Ruina
Ruina

Reputation: 365

MAUI iOS does not fit the screen

When deploying my MAUI iOS application in debug mode, it is displaying the application as a smaller window inside of the iPhone screen.

Almost like a smaller window inside of a window.

enter image description here

enter image description here

Upvotes: 0

Views: 1471

Answers (1)

Ruina
Ruina

Reputation: 365

I fixed this by adding a MAUI splash screen, which I had accidentally removed previously.

<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />

You can track this issue at https://github.com/dotnet/maui/issues/11951

Upvotes: 6

Related Questions