Super charged TextInput for React Native
npm install --save react-native-super-textinput
All TextInput props
onPauseText
function
Calls the provided function pauseDelay
milliseconds after the last onChangeText
.
pauseDelay
number
The number of milliseconds to wait after the last text change before firing onPauseText
. The default value is 500.
var SuperTextInput = require('react-native-super-textinput')
<SuperTextInput
onPauseText={() => console.log("You aren't typing anymore!")}
normalTextInputProp="foo"
anotherTextInputProp={bar}
/>