Hide footer on keyboard open Ionic3
问题 I'm trying to hide the footer of my Ionic 3 app when the keyboard is open, i've followed the steps found on official documentation and also on this question's accepted answer: Hide tabs on keyboard open I've correctly installed the keyboard plugin and imported it in app.module.ts, i have this code in app.component.ts: this.platform.ready().then(() => { this.keyboard.onKeyboardShow().subscribe(() => { document.body.classList.add('keyboard-is-open'); }); this.keyboard.onKeyboardHide().subscribe