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>
CLICK HERE to find out more related problems solutions.