I build ionic 3 app. I have inputs field and when I press on them to begin to type anything the screen changed..
before
when I press on any input field the screen changed(it's test also in real device)
I build ionic 3 app. I have inputs field and when I press on them to begin to type anything the screen changed..
before
when I press on any input field the screen changed(it's test also in real device)
You can fix this problem by adding this style to app.scss:
ion-grid {
min-height: 100%;
}
The keyboard resizes Ionic's grid system if you didn't define its minimum height.
Take a look at the native keyboard to prevent the keyboard from pushing things up.
keyboard.disableScroll(bool);