I'm having trouble force focussing a react native TextInput field.
It's focused when the page loads with autofocus={true}
.
But after blurring I would need to press the text input field, but that's hidden because of design reasons. Is there a way to document.getElementById("myText").focus();
in react native that I can call after onBlur()
?
Cheers.