How can I scroll content on keyboard open, My textbox get covered with Keyboard when it is open,
Hi @Jameeshpm!
Welcome to the community!
Please, try to add it in your app.modules.ts file:
IonicModule.forRoot({
mode: 'ios',
scrollAssist: false,
scrollPadding: false,
}),
1 Like