Keyboard pops down immediately after popping up, after single tap on input field #9657
Replies: 2 comments
-
You have a keyboard dismiss in your main view.
In android, the event propagates in a way similar to the web one. So in your case when you tap on your input the keyboard shows up, then the event propagates up to the main view, and your function On iOS, such an issue will not appear because iOS events propagate in the opposite way. |
Beta Was this translation helpful? Give feedback.
-
I'd handle the dismissKeyboard differently with your page tap event. You could wire that up on a button tap (submit or login) instead of tapping the page. Also be sure your form uses the return key type for your textfields so the user can move to the textfields via their keyboard control. |
Beta Was this translation helpful? Give feedback.
-
/
Beta Was this translation helpful? Give feedback.
All reactions