Keyboard Override on TextInput

Hi there, hope you will be fine. Actually I m facing an issue with expo app. I used textInput in my app but when I tap on input to type something, android keyboard override on the contents and textInput like this:


. I also tried using KeyboardAvoidingView but no luck. Please help, thanks!

1 Like

Hi,

You can wrap this up with KeyboardAvoidingView with
behavior={Platform.OS == “ios” ? “padding” : “height”}

eg:
<KeyboardAvoidingView
behavior={Platform.OS == “ios” ? “padding” : “height”}
style={styles.container}
>{this.props.children}