/react-native-auto-grow-textinput

This component allows to create auto grow text input for both platforms (iOS and Android).

Primary LanguageJavaScriptApache License 2.0Apache-2.0

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';

...
// If you don't need max height
<AutoGrowInputText placeholder='Some text here' />
// else if you need to set up max height
<AutoGrowInputText placeholder='Some text here' maxHeight={ 120 } />
...
// Also you can use any other TextInput props with AutoGrowInputText component

I hope it'll save your time.