Files
WeatherApp_MAUI/Weather/Platforms/iOS/AppDelegate.cs
T
2024-04-04 23:32:46 +02:00

11 lines
226 B
C#

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