AppDelegate.cs 578 B

1234567891011121314151617181920212223
  1. using Foundation;
  2. using UIKit;
  3. namespace DataPages.iOS
  4. {
  5. [Register("AppDelegate")]
  6. public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
  7. {
  8. public override bool FinishedLaunching(UIApplication app, NSDictionary options)
  9. {
  10. global::Xamarin.Forms.Forms.Init();
  11. LoadApplication(new App());
  12. var x = typeof(Xamarin.Forms.Themes.DarkThemeResources);
  13. x = typeof(Xamarin.Forms.Themes.LightThemeResources);
  14. x = typeof(Xamarin.Forms.Themes.iOS.UnderlineEffect);
  15. return base.FinishedLaunching(app, options);
  16. }
  17. }
  18. }