Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 692 Bytes

readme.md

File metadata and controls

33 lines (22 loc) · 692 Bytes

React Native Super TextInput

Super charged TextInput for React Native

Installation

npm install --save react-native-super-textinput

Props

All TextInput props

Super 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.

Example

var SuperTextInput = require('react-native-super-textinput')


<SuperTextInput
  onPauseText={() => console.log("You aren't typing anymore!")}
  normalTextInputProp="foo"
  anotherTextInputProp={bar}
/>