Files
Fixiy/Template.Maui/Platforms/iOS/AppDelegate.cs
T
2026-06-04 12:53:09 +02:00

11 lines
229 B
C#

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