ReactNative Auto Grow TextInput
This component allows to create auto grow text input for both platforms (iOS and Android).
Getting started
First of all, you need to install react-native-auto-grow-textinput
to your project.
$ yarn add react-native-auto-grow-textinput
After, you can use it in your project:
import { AutoGrowInputText } from 'react-native-auto-grow-textinput';
...
<AutoGrowInputText placeholder='Some text here' />
<AutoGrowInputText placeholder='Some text here' maxHeight={ 120 } />
...
I hope it'll save your time.