Merge pull request #4766 from sbwalker/dev

resolve compiler warning in .NET MAUI
This commit is contained in:
Shaun Walker 2024-10-21 15:42:08 -04:00 committed by GitHub
commit 4ebd660de2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,7 +5,10 @@ public partial class App : Application
public App()
{
InitializeComponent();
MainPage = new MainPage();
}
protected override Window CreateWindow(IActivationState? activationState)
{
return new Window(new MainPage());
}
}