↧
Answer by Jamal for How to handle TextInput in scrollView nested in View...
Solved!! I solved it by handling the display of elements (views) on keyboard show and hide by keyboard in react native docs
View ArticleAnswer by Annie Hill for How to handle TextInput in scrollView nested in View...
To make sure the keyboard is not overlapping any important bits of your layout such as your text Input wrap your whole screen in KeyboardAvoidingView...
View ArticleAnswer by iuliu.net for How to handle TextInput in scrollView nested in View...
Your question is really unclear, but what I think you need is KeyboardAvoidingView. It's a built-in React Native component that resizes based on the keyboard height.
View ArticleHow to handle TextInput in scrollView nested in View react native
I have a code like this: <View> <View></View> <ScrollView> <View> <TextInput/> </View> </ScrollView> <View></View> </View> How can I...
View Article