Web-Development-with-Blazor.../Chapter18/MauiDemo/NETMauiApp/Platforms/iOS/AppDelegate.cs
2023-02-17 15:28:17 +01:00

10 lines
228 B
C#

using Foundation;
namespace NETMauiApp
{
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}