Reputation: 365
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.
Upvotes: 0
Views: 1471
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