React Native Keyboard Aware ScrollView - auto adjust content ScrollView
npm install react-native-keyboard-aware-scrollviewInstall using npm:
```
npm i react-native-keyboard-aware-scrollview --save
`js`
import {KeyboardAwareScrollView} from 'react-native-keyboard-aware-scrollview'
Now use it as you would normally do with a ScrollView to wrap arround TextInput components:
`jsx`
#### Auto-Scrolling for TextInput components
Normally this component will just take care of handling the content inset. If you wish for KeyboardAwareScrollView to automatically scroll to a TextInput that gets focus (so it's ensured to be visible), you can add an attribute called getTextInputRefs - a callback in which you can return an array of references to the TextInput components that auto-scrolling to be handled for. KeyboardAwareScrollView will look for the focused TextInput in the array and make sure it's visible by scrolling to it's location.
Example:
`jsx`
Check out the full example project here.
In the example folder, perform npm install` and then run it from the Xcode project.