resolve compiler warning in .NET MAUI

This commit is contained in:
sbwalker 2024-10-21 15:41:57 -04:00
parent 1516d5af10
commit a9ea41a488

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());
}
}