is there any way for keyboard resize:none & allow scroll content … i have modal … if remove resize:non its affect my background image but if i do resize:none its perfect but i can not scroll my modal. its capacitor ?
i Found Answer by My Self Add this code in App.component.ts
Keyboard.addListener('keyboardWillShow', (info: any) => {
document.getElementsByTagName("ion-backdrop")[0].style.height = "130%";
});
Keyboard.addListener('keyboardWillHide', () => {
document.getElementsByTagName("ion-backdrop")[0].style.height = 'auto';
});