How to clear TextInput focus in React Native? (Android)

How to clear TextInput focus in React Native? (Android)

I am looking for an API here:

https://facebook.imtqy.com/react-native/docs/textinput.html#content

But no result ...

Anyone can help?

+7
android react-native
source share
1 answer

I think this should work. Add onFocus as a prop for your TextInput . It is assumed that you have a state variable called text, and that TextInput takes its value from this state variable.

 <TextInput ... onFocus= {() => this.setState({text : ''})} value={this.state.text}/> 
+7
source share

All Articles