AppDelegate.cs 440 B

123456789101112131415
  1. using Avalonia.iOS;
  2. using Foundation;
  3. using UIKit;
  4. namespace ControlCatalog.iOS.Legacy
  5. {
  6. // The UIApplicationDelegate for the application. This class is responsible for launching the
  7. // User Interface of the application, as well as listening (and optionally responding) to
  8. // application events from iOS.
  9. [Register("AppDelegate")]
  10. public partial class AppDelegate : AvaloniaAppDelegate<App>
  11. {
  12. }
  13. }