Missing auto grow multiline input component
npm install react-native-autogrow-inputPure JS Android/iOS drop in TextInput replacement with support for autogrow feature.
npm install react-native-autogrow-input --save
`Example
`Javascript
import React, {Component, View} from 'react-native';
import AutogrowInput from 'react-native-autogrow-input';export default class MyComponent extends Component {
render() {
return
defaultHeight={50}
/ all props supported by original TextInput components are supported /
/>
;
}
}
``