add missing KeyboardAvoidingView documentation

Summary: Closes https://github.com/facebook/react-native/pull/9667

Differential Revision: D3791743

Pulled By: hramos

fbshipit-source-id: 823bf44028d8fb01f13510753362b8da3692f936
This commit is contained in:
Sokovikov
2016-08-30 10:37:11 -07:00
committed by Facebook Github Bot 3
parent 2e8d027a9e
commit 0a1d7280eb
2 changed files with 5 additions and 0 deletions

View File

@@ -47,6 +47,10 @@ type LayoutEvent = {
const viewRef = 'VIEW';
/**
* 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.
*/
const KeyboardAvoidingView = React.createClass({
mixins: [TimerMixin],