Skip to content

jeremistadler/react-native-auto-grow-textinput

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ReactNative Auto Grow TextInput

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

Attantion

If you use ReactNative <= 0.43.X in your poject, you should install version 1.1.2 of ReactNative Auto Grow TextInput.

$ yarn add react-native-auto-grow-textinput@1.1.2

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 { AutoGrowTextInput } from 'react-native-auto-grow-textinput';

...
// If you don't need max height
<AutoGrowTextInput placeholder='Some text here'/>

// else if you need to set up max height
<AutoGrowTextInput placeholder='Some text here' maxHeight={ 120 } />

// Connected to state
<AutoGrowTextInput value={this.state.text} onChangeText={this.onChangeText} />
...
// Also you can use any other TextInput props with AutoGrowTextInput component

I hope it'll save your time.

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%