MobileAPP/Platforms/iOS/AppDelegate.cs

11 lines
228 B
C#
Raw Permalink Normal View History

2025-02-27 15:13:31 +03:00
using Foundation;
namespace MobileAPP
{
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}