Ionic 6 default project white screen on Android 30 or below when using --prod

So, I’ve been able to solve this with an ugly CSS override hack in variables.scss.

I added this both to my real app and the Ionic starter app and now the app displays as expected.

.ion-page {
  padding: 0;
  width: 100%;
  height: 100%;
}

Is it possible for you to have a fix for the official Ionic starter app? Or, wherever you need to do that actual fix? :slight_smile:

// edit, used unset wrongly on the display property. With inline, it works and the left hand menu is usable again :slight_smile:

// edit 2 previous display property change had issues with that did not display at all.
Current solution appears to correct the problem with the app.

So the white screen = the size of the app area is 1x1 px or even 0 probably.