I am using Keyborad native plug.When use keybord.onKeyboardShow() to hide button subscription waits until typing to hide button.Should ıt hide button as soon as keyboard shows up ?
home.ts
this.platform.ready().then(()=>{
this.keybord.onKeyboardShow().subscribe(()=>{this.reh=true})
this.keybord.onKeyboardHide().subscribe(()=>{this.reh=false})
home.html
<button ion-button class="margin" [hidden]=reh round " >Test</button>
Thank you in Advance for your response