| 1234567891011121314151617181920212223 |
- using Foundation;
- using UIKit;
- namespace Themes.iOS
- {
- [Register("AppDelegate")]
- public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
- {
- public override bool FinishedLaunching(UIApplication app, NSDictionary options)
- {
- global::Xamarin.Forms.Forms.Init();
- LoadApplication(new App());
- var x = typeof(Xamarin.Forms.Themes.DarkThemeResources);
- x = typeof(Xamarin.Forms.Themes.LightThemeResources);
- x = typeof(Xamarin.Forms.Themes.iOS.UnderlineEffect);
- return base.FinishedLaunching(app, options);
- }
- }
- }
|