示例#1
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            global::Xamarin.Forms.Forms.Init();

            MaterialIconControls.Init();

            LoadApplication(new App());

            return(base.FinishedLaunching(app, options));
        }
示例#2
0
        //
        // This method is invoked when the application has loaded and is ready to run. In this
        // method you should instantiate the window, load the UI into it and then make the window
        // visible.
        //
        // You have 17 seconds to return from this method, or iOS will terminate your application.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            Plugin.Iconize.Iconize.With(new Plugin.Iconize.Fonts.FontAwesomeModule())
            .With(new Plugin.Iconize.Fonts.MaterialModule());
            global::Xamarin.Forms.Forms.Init();
            FormsPlugin.Iconize.iOS.IconControls.Init();
            MaterialIconControls.Init();

            StrapUp.Forms.Controls.Init.Controls();

            LoadApplication(new App());
            return(base.FinishedLaunching(app, options));
        }
示例#3
0
        protected override void OnCreate(Bundle bundle)
        {
            TabLayoutResource = Resource.Layout.Tabbar;
            ToolbarResource   = Resource.Layout.Toolbar;

            base.OnCreate(bundle);

            global::Xamarin.Forms.Forms.Init(this, bundle);

            MaterialIconControls.Init();

            LoadApplication(new App());
        }
        protected override void OnCreate(Bundle bundle)
        {
            TabLayoutResource = Resource.Layout.Tabbar;
            ToolbarResource   = Resource.Layout.Toolbar;

            base.OnCreate(bundle);

            Plugin.Iconize.Iconize.With(new Plugin.Iconize.Fonts.FontAwesomeModule())
            .With(new Plugin.Iconize.Fonts.MaterialModule());

            MaterialIconControls.Init();

            global::Xamarin.Forms.Forms.Init(this, bundle);

            //FormsPlugin.Iconize.Droid.IconControls.Init(Resource.Id.toolbar, Resource.Id.tabs);

            LoadApplication(new App());
        }