Files
TaskHybrid/Template.Maui/Platforms/iOS/AppDelegate.cs
2024-10-11 11:06:37 +02:00

11 lines
229 B
C#

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