zhaw-dnet2/Tasks/Lab12/TodoDetails/Platforms/iOS/AppDelegate.cs

11 lines
230 B
C#
Raw Normal View History

2024-06-06 20:52:07 +00:00
using Foundation;
namespace TodoDetails
{
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}