I have one model with textinput inside, but, my keyboard overlap this field.
I tried to use KeyboardAvoidingView, but did not work.
Can someone help me please?
There is a good lib that resolves this problem react-native-keyboard-aware-scroll-view
yarn add react-native-keyboard-aware-scroll-view
The component auto-scroll to focused text input!
import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view'
<KeyboardAwareScrollView>
<View>
<TextInput />
</View>
</KeyboardAwareScrollView>