KeyboardAvoidingView
It is a component to solve the common problem of views that need to move out of the way of the virtual keyboard. It can automatically adjust either its position or bottom padding based on the position of the keyboard.
+Example usage:
+import { KeyboardAvoidingView } from 'react-native';
+
+<KeyboardAvoidingView style={styles.container} behavior="padding">
+ ... your UI ...
+</KeyboardAvoidingView>
+
Example
