diff --git a/docs/next/keyboardavoidingview.html b/docs/next/keyboardavoidingview.html index bd2d82db374..11fb8bc97ef 100644 --- a/docs/next/keyboardavoidingview.html +++ b/docs/next/keyboardavoidingview.html @@ -5,6 +5,13 @@ nav.classList.toggle('docsSliderActive'); };
Edit

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

Props