AppDelegate.cs 742 B

123456789101112131415161718192021222324
  1. using Avalonia;
  2. using Avalonia.Controls;
  3. using Avalonia.iOS;
  4. using Avalonia.Media;
  5. using Avalonia.ReactiveUI;
  6. using Foundation;
  7. using UIKit;
  8. namespace VeloeAvaloniaKemonoPartyApp.iOS
  9. {
  10. // The UIApplicationDelegate for the application. This class is responsible for launching the
  11. // User Interface of the application, as well as listening (and optionally responding) to
  12. // application events from iOS.
  13. [Register("AppDelegate")]
  14. public partial class AppDelegate : AvaloniaAppDelegate<App>
  15. {
  16. protected override AppBuilder CustomizeAppBuilder(AppBuilder builder)
  17. {
  18. return base.CustomizeAppBuilder(builder)
  19. .WithInterFont()
  20. .UseReactiveUI();
  21. }
  22. }
  23. }