In ionic when some stuff is outside ion-content and opens up keyboard then there is a white space shows where the keyboard appear, when keyboard close in the screen.
Asked
Active
Viewed 1,402 times
1 Answers
6
I found below solution for this -
Find inside platform/android folder
android:windowSoftInputMode="adjustResize"
You will find it around 3 places and replace it to
android:windowSoftInputMode="adjustPan"
Create new build and enjoy!

Vivek Chaturvedi
- 530
- 5
- 16
-
If we use adjustPan, we are unable to scroll over the page. – Paresh Gami Jan 13 '20 at 16:54
-
In android, this problem was solved. But in ios how to solve this problem? – orcaenlhw Aug 06 '23 at 17:14