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:
parent
2e8d027a9e
commit
0a1d7280eb
|
@ -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],
|
||||
|
||||
|
|
|
@ -489,6 +489,7 @@ const components = [
|
|||
'../Libraries/Components/DatePicker/DatePickerIOS.ios.js',
|
||||
'../Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js',
|
||||
'../Libraries/Image/Image.ios.js',
|
||||
'../Libraries/Components/Keyboard/KeyboardAvoidingView.js',
|
||||
'../Libraries/CustomComponents/ListView/ListView.js',
|
||||
'../Libraries/Components/MapView/MapView.js',
|
||||
'../Libraries/Modal/Modal.js',
|
||||
|
|
Loading…
Reference in New Issue