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
this.container.addListener('tap', (e: InteractionEvent) => {
const { x, y, width, height } = input.getBounds();
const { x: eX, y: eY } = e.data.global;
if (eX >= x && eX <= x + width && eY >= y && eY <= y + height) {
input.focus();
}
});
What happen :
On iOS Chrome / Safari 13.5 on the first click it take the focus but the it didn't open the keyboard
Behavior expected :
We click it take the focus and open the keyboard
What we try :
use focus() one or more time on touch
use select() one or more time on touch
Note :
The bug is easily reproducible on the demo link
It works as expected on Android.
Thanks in advance.
The text was updated successfully, but these errors were encountered: