You should use onChangeText instead of onChange
<TextInput onChangeText={this._textChange}/>
if declare your method as a named function like below
_textChange(text) {
this.setState({
textValue: text,
})
}
So you should use bind, because the this keyword will not refer to the component scope,but in your case it is not necessary.
Please take a look at this article to understand difference between named function and arrow function.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…