I\'m building an Android app with React Native.
How can you force a TextInput to \"unFocus\", meaning the cursor is blinking inside the text field. The
TextInput
I managed to solve this with this.ref reference. First, you assign to the TextInput a ref, like this:
ref
Then, you call the blur() method to this.refs.myInput from a function
this.refs.myInput
blurTextInput(){ this.refs.myInput.blur() }