Files
SteUP_Dotnet/SteUp.Maui/Platforms/iOS/AppDelegate.cs
2026-02-04 12:14:03 +01:00

11 lines
229 B
C#

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