Files
Ursa.Avalonia/demo/Ursa.Demo.iOS/AppDelegate.cs
2024-07-30 18:33:30 +08:00

17 lines
524 B
C#

using Foundation;
using Avalonia;
using Avalonia.iOS;
namespace Ursa.Demo.iOS;
// The UIApplicationDelegate for the application. This class is responsible for launching the
// User Interface of the application, as well as listening (and optionally responding) to
// application events from iOS.
[Register("AppDelegate")]
public partial class AppDelegate : AvaloniaAppDelegate<App>
{
protected override AppBuilder CustomizeAppBuilder(AppBuilder builder)
{
return base.CustomizeAppBuilder(builder);
}
}