You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For an example of what I'm talking about, take a look at the UIExplorer Android app - the cursor is still visible when you submit and the onBlur callback gets called after you select another TextInput.
I've tried debugging it with no luck (I'm an iOS dev). Some paths I've explored:
Changing the onKeyUp() method to call clearFocus() instead of hideSoftKeyboard() in ReactEditText.java - for some reason the debugger never hits that breakpoint.
For an example of what I'm talking about, take a look at the UIExplorer Android app - the cursor is still visible when you submit and the onBlur callback gets called after you select another TextInput.
I've tried debugging it with no luck (I'm an iOS dev). Some paths I've explored:
Potential workarounds -
Call the blur() method on the textinput's ref in the TextInput's onSubmitEditing callback
Verified that this is an issue on RN master @ 42cfba5 - 0.24+
Devices: Nexus 5, Genymotion
Would love some help in trying to understand what's going on! Thanks!