From 3f77e3779bd9c78fd91912141816ff8cbcf577d7 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Wed, 7 Mar 2018 18:05:50 +0000 Subject: [PATCH] Deploy website Deploy website version based on 6b97c8032aaded5dc16453008e7d3de09355412a --- docs/next/keyboardavoidingview.html | 7 +++++++ 1 file changed, 7 insertions(+) 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