Events not firing when using floating keyboard
MarrsAttax opened this issue · 0 comments
MarrsAttax commented
I am using a Samsung Galaxy Tab A. The on-screen keyboard mode is set to use a floating keyboard. I am trying to capture the keyboardWillShow event but this event is not firing. If I set the keyboard mode to the default 'standard keyboard' then the event does fire.
I am using this code to capture the event:
Plugins.Keyboard.addListener('keyboardWillShow', (info: any) => {
console.log('keyboardWillShow');
});
Here is my ion-input:
<ion-input
type="text"
step="any"
inputmode="text"
maxlength="15"
></ion-input>
Is this a bug? Am I capturing the event correctly? Is there a workaround?