react-native-keyboard-spacer
react-native-keyboard-spacer copied to clipboard
fixed input and listview padding problem
my problem its when i when i touch the input the padding of the keyboard came before the keyboard
you can see in this gif
<View style={{flex:1}}>
<View style=
{{backgroundColor:"green",height:60,justifyContent:"center",alignItems:"center"}}>
<Text>yotav try</Text>
</View>
<ListView
style={{backgroundColor:'black'}}
dataSource={this.state.dataSource}
renderRow={(rowData) => <RegBubble>{rowData}</RegBubble>}
/>
<TextInput style={{height:50}}/>
<KeyboardSpacer/>
</View>
Having same issue..
Same here!