Unsubscribe ionic keyboard onKeyboardShow()

Its similar to the way platform.resume subscribes and unsubscribes, you need a reference.

//subscribes
let keyboardShowRef = this.keyboard.onKeyboardShow().subscribe(kb=>{
//your code
})
//unsubscribes
keyboardShowRef.unsubscribe();
1 Like