hello-shop/src/HelloShop.HybridApp/Platforms/iOS/AppDelegate.cs
2023-12-08 15:22:20 +08:00

11 lines
238 B
C#

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