How to remove the white space at iPhone X top viewport corners on ionic cordova

Viewed 5624
2 Answers

Eventually figured it out myself. In case anyone else has the same issue, here's what did the trick for me:

ionic cordova plugin rm cordova-plugin-statusbar

ionic cordova plugin add https://github.com/apache/cordova-plugin-statusbar.git

Refer to: https://github.com/apache/cordova-plugin-statusbar/pull/85

Make changes in css .Add this code with existing code like

body{
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
}

If you use toolbar button then go with:

.toolbar-footer{
margin-bottom: constant(safe-area-inset-bottom);
margin-bottom: env(safe-area-inset-bottom);
}

Solution:

more help available at cordovo apache

stackoverflow solution

Related