MauiMobApp/Platforms/iOS/AppDelegate.cs
2025-03-05 10:52:23 +03:00

11 lines
211 B
C#

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