24 lines
721 B
C#
Raw Normal View History

2024-02-14 23:32:20 +01:00
using Avalonia;
using Avalonia.iOS;
2024-02-18 21:51:15 +01:00
using Avalonia.ReactiveUI;
2024-02-14 23:32:20 +01:00
using Foundation;
2024-02-20 23:02:47 +01:00
using AvaloniaInside.Shell;
2024-02-14 23:32:20 +01:00
2024-02-20 23:02:47 +01:00
namespace Borepin.iOS
2024-02-14 23:32:20 +01:00
{
2024-02-20 23:02:47 +01:00
// 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>
2024-02-14 23:32:20 +01:00
{
2024-02-20 23:02:47 +01:00
protected override AppBuilder CustomizeAppBuilder(AppBuilder builder)
{
return base.CustomizeAppBuilder(builder)
.WithInterFont()
.UseReactiveUI()
.UseShell();
}
2024-02-14 23:32:20 +01:00
}
}