React-native Button Not Visible
I'm trying to make a simple login screen where i have 2 TextInputs and a button inside a view. The TextInputs are visible,but the button is not visible when i keep it inside the vi
Solution 1:
you forgot to add flex:1 at your root view
<View style={{flex:1,flexDirection: 'column', padding: 20}}>
Post a Comment for "React-native Button Not Visible"