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

10 lines
209 B
C#

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