prop-methods
Last updated
Last updated
TextInput
onSubmitEditing
onChangeText
import {TextInput} from 'react-native'
const Example = props => {
render(){
renturn(
<TextInput onChangeText={handleTextChange}></TextInput>
)
}
}
const handleTextChange = text => alert(`text: ${text}`)
可以看到 onChangeText
,相当于input onChange
.