public MainPage()
        {
            this.InitializeComponent();
            SfListViewRenderer.Init();

            LoadApplication(new WorldExplorerEurope.App());
        }
Exemplo n.º 2
0
        public MainPage()
        {
            this.InitializeComponent();

            LoadApplication(new SampleBrowser.SfRangeSlider.App());
            SfListViewRenderer.Init();
        }
Exemplo n.º 3
0
        public MainPage()
        {
            this.InitializeComponent();

            LoadApplication(new SampleBrowser.SfNumericTextBox.App());
            SfListViewRenderer.Init();
        }
Exemplo n.º 4
0
 public MainPage()
 {
     this.InitializeComponent();
     SfListViewRenderer.Init();
     SfPullToRefreshRenderer.Init();
     LoadApplication(new SampleBrowser.SfListView.App());
 }
 //
 // 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)
 {
     global::Xamarin.Forms.Forms.Init();
     LoadApplication(new App());
     SfListViewRenderer.Init();
     return(base.FinishedLaunching(app, options));
 }
Exemplo n.º 6
0
        /// <summary>
        /// Initializes the singleton application object. This is the first line of authored code
        /// executed, and as such is the logical equivalent of main() or WinMain().
        /// </summary>
        public App()
        {
            UnhandledException += (x, y) => { AppHolder.App_UnhandledException(y.Message, y.Exception); };

            EnteredBackground += App_EnteredBackground;
            LeavingBackground += App_LeavingBackground;

            InitializeComponent();

            #region Init Libs
            assembliesToInclude.Add(typeof(dotMorten.Xamarin.Forms.AutoSuggestBox).GetTypeInfo().Assembly);
            Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense(LocalConstants.SyncFusion_LICENSEKEY);
            assembliesToInclude.Add(typeof(SfBusyIndicatorRenderer).GetTypeInfo().Assembly);
            assembliesToInclude.Add(typeof(SfListViewRenderer).GetTypeInfo().Assembly);
            assembliesToInclude.Add(typeof(SfBorderRenderer).GetTypeInfo().Assembly);
            assembliesToInclude.Add(typeof(SfButtonRenderer).GetTypeInfo().Assembly);
            assembliesToInclude.Add(typeof(SfPopupLayoutRenderer).GetTypeInfo().Assembly);
            assembliesToInclude.Add(typeof(SfNavigationDrawerRenderer).GetTypeInfo().Assembly);
            assembliesToInclude.Add(typeof(SfPopupLayoutRenderer).GetTypeInfo().Assembly);
            assembliesToInclude.Add(typeof(Rg.Plugins.Popup.Popup).GetTypeInfo().Assembly);
            SfListViewRenderer.Init();
            SfPopupLayoutRenderer.Init();

            ShadowRunHelperViewer.Platform.Xam.Init.Do();
            ShadowRunHelperViewer.Platform.UWP.Init.Do();

            Rg.Plugins.Popup.Popup.Init();
            #endregion Init Libs
        }
Exemplo n.º 7
0
        public MainPage()
        {
            this.InitializeComponent();
            SfListViewRenderer.Init();

            LoadApplication(new CocktailPicker.App());
        }
Exemplo n.º 8
0
 public MainPage()
 {
     this.InitializeComponent();
     SfListViewRenderer.Init();
     new Syncfusion.SfMaps.XForms.UWP.SfMapsRenderer();
     LoadApplication(new EssentialUIKit.App());
 }
Exemplo n.º 9
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)
        {
            Forms.SetFlags("CollectionView_Experimental");
            global::Xamarin.Forms.Forms.Init();
            FFImageLoading.Forms.Platform.CachedImageRenderer.Init();

            SfRatingRenderer      sfRatingRenderer      = new SfRatingRenderer();
            SfRangeSliderRenderer sfRangeSliderRenderer = new SfRangeSliderRenderer();

            SfListViewRenderer.Init();

            WireupDependency();

            App.StatusBarHeight = UIApplication.SharedApplication.StatusBarFrame.Height;
            App.ScreenSize      = new Xamarin.Forms.Size(UIScreen.MainScreen.Bounds.Width, UIScreen.MainScreen.Bounds.Height);

            var attribute = new UITextAttributes();

            attribute.TextColor = UIColor.Clear;
            UIBarButtonItem.Appearance.SetTitleTextAttributes(attribute, UIControlState.Normal);
            UIBarButtonItem.Appearance.SetTitleTextAttributes(attribute, UIControlState.Highlighted);

            var application = (Xamarin.Forms.Application)ContainerManager.Container.Resolve(typeof(App), typeof(App).ToString());

            LoadApplication(application);

            PrintFontNames();

            var result = base.FinishedLaunching(app, options);

            app.KeyWindow.TintColor = Color.FromHex("#853939").ToUIColor();
            return(result);
        }
Exemplo n.º 10
0
 public MainPage()
 {
     this.InitializeComponent();
     SfPopupLayoutRenderer.Init();
     SfListViewRenderer.Init();
     LoadApplication(new ListViewXamarin.App());
 }
Exemplo n.º 11
0
        public MainPage()
        {
            this.InitializeComponent();
            SfListViewRenderer.Init();

            LoadApplication(new FormsSample.App());
        }
Exemplo n.º 12
0
        public MainPage()
        {
            this.InitializeComponent();
            SfDataGridRenderer.Init();
            SfListViewRenderer.Init();


            /*
             * Android Example
             * var dbName = "CustomersDb.db3";
             * var path = Path.Combine(System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal), dbName);
             * return new SQLiteConnection(path);
             *
             * UWP Example
             * var dbName = "CustomersDb.db3";
             * var path = Path.Combine(ApplicationData.Current.LocalFolder.Path, dbName);
             * return new SQLiteConnection(path);
             *
             * Android Mine
             * string dbname = "workbook.sqlite";
             * string folderPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal);
             * string fullPath = Path.Combine(folderPath, dbname);
             */

            string dbname = "workbook.sqlite";
            var    path   = Path.Combine(ApplicationData.Current.LocalFolder.Path, dbname);



            LoadApplication(new TheWorkbook.App(path));
        }
Exemplo n.º 13
0
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            // create a new window instance based on the screen size
            //Window = new UIWindow(UIScreen.MainScreen.Bounds);

            // If you have defined a root view controller, set it here:
            // Window.RootViewController = myViewController;

            Forms.Init();

            SfListViewRenderer.Init();
            new SfBusyIndicatorRenderer();
            SfScheduleRenderer.Init();
            Xamarin.FormsMaps.Init();
            ImageCircleRenderer.Init();

            BootstrapperService.Initialize(new IociOSModule()).GetAwaiter();

            LoadApplication(new App());

            // make the window visible
            //Window.MakeKeyAndVisible();

            return(base.FinishedLaunching(application, launchOptions));
        }
Exemplo n.º 14
0
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            // create a new window instance based on the screen size
            Window = new UIWindow(UIScreen.MainScreen.Bounds);

            // If you have defined a root view controller, set it here:
            // Window.RootViewController = myViewController;

            Forms.Init();

            //Initialize all the custom renderers
            new SfRotatorRenderer();
            AnimationViewRenderer.Init();
            ImageCircleRenderer.Init();
            SfListViewRenderer.Init();
            SfRadialMenuRenderer.Init();
            VideoViewRenderer.Init();

            LoadApplication(new App(new IociOSModule()));

            // make the window visible
            //Window.MakeKeyAndVisible();

            var result = base.FinishedLaunching(application, launchOptions);

            application.KeyWindow.TintColor = Helper.ToUIColor("15C44B");

            return(result);
        }
Exemplo n.º 15
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)
        {
            global::Xamarin.Forms.Forms.Init();
            SfTextInputLayoutRenderer.Init();
            SfAvatarViewRenderer.Init();
            SfSegmentedControlRenderer.Init();
            SfRadioButtonRenderer.Init();
            Core.Init();
            SfComboBoxRenderer.Init();
            SfCalendarRenderer.Init();
            SfCardViewRenderer.Init();
            SfListViewRenderer.Init();
            SfRatingRenderer.Init();
            SfGradientViewRenderer.Init();
            SfBorderRenderer.Init();
            SfButtonRenderer.Init();

            SfPdfDocumentViewRenderer.Init();


            SfRangeSliderRenderer.Init();

            LoadApplication(new App());

            return(base.FinishedLaunching(app, options));
        }
Exemplo n.º 16
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)
        {
            global::Xamarin.Forms.Forms.Init();

            App.ScreenWidth  = UIScreen.MainScreen.Bounds.Width;
            App.Platform     = Platforms.iOS;
            App.ScreenHeight = UIScreen.MainScreen.Bounds.Height;

            new SfPdfDocumentViewRenderer();

            new SfChartRenderer();

            new SfSparklineRenderer();

            new SfBusyIndicatorRenderer();

            new SfBarcodeRenderer();

            new SfScheduleRenderer();

            new SfDigitalGaugeRenderer();

            new SfLinearGaugeRenderer();

            new SfRangeSliderRenderer();

            new SfAutoCompleteRenderer();

            new SfNumericTextBoxRenderer();

            new SfRatingRenderer();

            new SfPullToRefreshRenderer();

            new SfRotatorRenderer();

            new SfCalendarRenderer();

            new SfCarouselRenderer();

            new SfMapsRenderer();

            new SfTreeMapRenderer();

            new SfNumericUpDownRenderer();

            new SfNavigationDrawerRenderer();

            new SfKanbanRenderer();

            SfDataGridRenderer.Init();
            SfListViewRenderer.Init();

            LoadApplication(new App());

            app.StatusBarHidden = false;
            app.StatusBarStyle  = UIStatusBarStyle.LightContent;

            return(base.FinishedLaunching(app, options));
        }
Exemplo n.º 17
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)
        {
            global::Xamarin.Forms.Forms.Init();
            SfListViewRenderer.Init();
            CachedImageRenderer.Init();
            Syncfusion.XForms.iOS.ProgressBar.SfCircularProgressBarRenderer.Init();
            Syncfusion.SfChart.XForms.iOS.Renderers.SfChartRenderer.Init();

            DeviceSize.FullScreenWidth  = (int)UIScreen.MainScreen.Bounds.Size.Width;
            DeviceSize.FullScreenHeight = (int)UIScreen.MainScreen.Bounds.Size.Height;

            LoadApplication(new App());
            Xamarin.FormsMaps.Init();
            ImageCircleRenderer.Init();

            AppCenter.Start("f091513f-6c14-4845-8737-dbdc8dbeff2f", typeof(Analytics), typeof(Crashes));

            MessagingCenter.Subscribe <SyncMessage>(this, string.Empty, async(sender) =>
            {
                if (await _syncPossibility.CheckAsync(true))
                {
                    SyncService sync = new SyncService();
                    sync.Start(sender?.RouteId, sender.NeedCheckVersionRoute);
                }
            });

            return(base.FinishedLaunching(app, options));
        }
Exemplo n.º 18
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)
        {
            global::Xamarin.Forms.Forms.Init();

            SfDataGridRenderer.Init();


            SfGaugeRenderer.Init();


            SfListViewRenderer.Init();


            SfTabViewRenderer.Init();


            SfCheckBoxRenderer.Init();


            SfRadioButtonRenderer.Init();


            SfButtonRenderer.Init();


            SfCardViewRenderer.Init();


            SfAccordionRenderer.Init();

            LoadApplication(new App());

            return(base.FinishedLaunching(app, options));
        }
Exemplo n.º 19
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 applicatiosn.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            new Syncfusion.SfAutoComplete.XForms.iOS.SfAutoCompleteRenderer();
            global::Xamarin.Forms.Forms.Init();
            Xamarin.FormsMaps.Init();
            AppCenter.Start("ios=aa6903ad-9ec2-4ed5-b067-bde25d4aa602;" + "android=57c9b3f5-30f0-42aa-92cd-76394490bb70", typeof(Analytics), typeof(Crashes), typeof(Auth), typeof(Data));
            Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("MTk4MTMzQDMxMzcyZTM0MmUzMEtnZWV6UEplVUIrUms0ZmFpWGRUdXVMcERjNEpxQU16bkNrV1hQL2FqMXM9");
            SfListViewRenderer.Init();
            SfEffectsViewRenderer.Init();
            SfRadialMenuRenderer.Init();
            Syncfusion.SfChart.XForms.iOS.Renderers.SfChartRenderer.Init();
            Syncfusion.XForms.iOS.PopupLayout.SfPopupLayoutRenderer.Init();
            Syncfusion.XForms.iOS.Graphics.SfGradientViewRenderer.Init();
            Syncfusion.XForms.iOS.Border.SfBorderRenderer.Init();
            Syncfusion.XForms.iOS.Buttons.SfButtonRenderer.Init();


            string fileName     = "user.db3";
            string folderPath   = Path.Combine(Environment.GetFolderPath(System.Environment.SpecialFolder.Personal), "..", "Library");
            string completePath = Path.Combine(folderPath, fileName);

            LoadApplication(new App(completePath));

            return(base.FinishedLaunching(app, options));
        }
Exemplo n.º 20
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)
        {
            #region Error Handling

            AppDomain.CurrentDomain.UnhandledException += CurrentDomainOnUnhandledException;
            TaskScheduler.UnobservedTaskException      += TaskSchedulerOnUnobservedTaskException;

            #endregion

            Forms.Init();
            ImageCircleRenderer.Init();
            FormsControls.Touch.Main.Init();
            SfPullToRefreshRenderer.Init();
            SfListViewRenderer.Init();
            Syncfusion.XForms.iOS.ProgressBar.SfCircularProgressBarRenderer.Init();
            LoadApplication(new App());

            #region Theme

            UINavigationBar.Appearance.SetTitleTextAttributes(new UITextAttributes {
                TextColor = UIColor.Black
            });
            UINavigationBar.Appearance.TintColor = UIColor.Black;

            #endregion

            return(base.FinishedLaunching(app, options));
        }
Exemplo n.º 21
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)
        {
            global::Xamarin.Forms.Forms.Init();
            XamEffects.iOS.Effects.Init();
            SfPopupLayoutRenderer.Init();
            SfButtonRenderer.Init();
            SfTextInputLayoutRenderer.Init();
            new SfBusyIndicatorRenderer();
            Syncfusion.SfDataGrid.XForms.iOS.SfDataGridRenderer.Init();
            ResourceHelper temp = new ResourceHelper();

            SfPopupLayoutRenderer.Init();
            SfListViewRenderer.Init();
            Rg.Plugins.Popup.Popup.Init();
            Syncfusion.XForms.iOS.TabView.SfTabViewRenderer.Init();
            SfListViewRenderer.Init();
            SfRadialMenuRenderer.Init();
            ImageCircleRenderer.Init();
            Syncfusion.XForms.iOS.TabView.SfTabViewRenderer.Init();
            Xamarin.FormsGoogleMaps.Init(Variables.mapsAPIKEY);
            SfPopupLayoutRenderer.Init();
            Syncfusion.XForms.iOS.Cards.SfCardViewRenderer.Init();
            new Syncfusion.SfNavigationDrawer.XForms.iOS.SfNavigationDrawerRenderer();
            LoadApplication(new App());
            return(base.FinishedLaunching(app, options));
        }
Exemplo n.º 22
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)
        {
            Rg.Plugins.Popup.Popup.Init();
            XfxControls.Init();
            Xamarin.Forms.Forms.Init();
            KeyboardOverlapRenderer.Init();
            SfPickerRenderer.Init();

            SfListViewRenderer.Init();
            CachedImageRenderer.Init();
            var ignore = typeof(SvgCachedImage);

            LoadApplication(new App());

            base.FinishedLaunching(app, options);


            // test
            //UINavigationBar.Appearance.SetBackgroundImage(new UIImage(), UIBarMetrics.Default);
            //UINavigationBar.Appearance.ShadowImage = new UIImage();
            //UINavigationBar.Appearance.BackgroundColor = UIColor.Clear;
            UINavigationBar.Appearance.TintColor = UIColor.White;
            UINavigationBar.Appearance.SetTitleTextAttributes(new UITextAttributes {
                TextColor = UIColor.White
            });
            //UINavigationBar.Appearance.BarTintColor = UIColor.FromPatternImage(UIImage.FromFile("TopBar.png"));
            //UINavigationBar.Appearance.Translucent = true;

            return(true);
        }
Exemplo n.º 23
0
 public MainPage()
 {
     this.InitializeComponent();
     SfListViewRenderer.Init();
     SfPopupLayoutRenderer.Init();
     LoadApplication(new SampleBrowser.SfDatePicker.App());
 }
Exemplo n.º 24
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)
        {
            global::Xamarin.Forms.Forms.Init();

            SfComboBoxRenderer.Init();
            SfNumericTextBoxRenderer.Init();
            Forms9Patch.iOS.Settings.Initialize(this);
            SfChartRenderer.Init();
            SfSegmentedControlRenderer.Init();
            SfListViewRenderer.Init();
            SfTextInputLayoutRenderer.Init();
            SfBorderRenderer.Init();
            SfButtonRenderer.Init();
            SfMaskedEditRenderer.Init();

            Firebase.Core.App.Configure();

            AppDomain.CurrentDomain.UnhandledException += CurrentDomainOnUnhandledException;
            TaskScheduler.UnobservedTaskException      += TaskSchedulerOnUnobservedTaskException;

            DisplayCrashReport();

            LoadApplication(new App(new iOSInitializer()));

            CachedImageRenderer.Init();
            CachedImageRenderer.InitImageSourceHandler();

            //Thread.Sleep(2000);

            return(base.FinishedLaunching(app, options));
        }
Exemplo n.º 25
0
 private void InitializePlugins()
 {
     SfListViewRenderer.Init();
     new SfBusyIndicatorRenderer();
     SfPickerRenderer.Init();
     new SfCarouselRenderer();
 }
Exemplo n.º 26
0
 public MainPage()
 {
     this.InitializeComponent();
     SfListViewRenderer.Init();
     Xamarin.FormsMaps.Init();
     LoadApplication(new XamarinTesting.App());
 }
Exemplo n.º 27
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)
        {
            Rg.Plugins.Popup.Popup.Init();

            global::Xamarin.Forms.Forms.Init();

            // SYNCFUSION
            SyncfusionLicenseProvider.RegisterLicense(""); //TODO: Your Syncfusion License
            SfListViewRenderer.Init();
            SfAutoCompleteRenderer.Init();
            SfImageEditorRenderer.Init();
            Sharpnado.Shades.iOS.iOSShadowsRenderer.Initialize();
            Syncfusion.XForms.iOS.Buttons.SfChipRenderer.Init();
            Syncfusion.XForms.iOS.Buttons.SfChipGroupRenderer.Init();
            Syncfusion.XForms.iOS.Border.SfBorderRenderer.Init();
            Syncfusion.XForms.iOS.Buttons.SfButtonRenderer.Init();
            Syncfusion.XForms.iOS.ComboBox.SfComboBoxRenderer.Init();
            FormsMaterial.Init();

            LoadApplication(new App());

            AVAudioSession.SharedInstance().SetCategory(AVAudioSessionCategory.PlayAndRecord, AVAudioSessionCategoryOptions.DefaultToSpeaker);

            return(base.FinishedLaunching(app, options));
        }
Exemplo n.º 28
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)
        {
            Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("MTU0ODY4QDMxMzcyZTMzMmUzMEU4QWhNRUEwN05VM2cwaTFzV1RSWk1oemxOYklnbTA4SHpsc3hHTFZiNW89");
            Google.MobileAds.MobileAds.Configure("ca-app-pub-9800707284712065~3426477994");
            global::Xamarin.Forms.Forms.Init();
            SfCardLayoutRenderer.Init();
            SfChartRenderer.Init();
            SfSwitchRenderer.Init();
            SfTextInputLayoutRenderer.Init();
            SfImageEditorRenderer.Init();
            SfKanbanRenderer.Init();
            SfDigitalGaugeRenderer.Init();
            SfNavigationDrawerRenderer.Init();
            SfPopupLayoutRenderer.Init();
            SfLinearProgressBarRenderer.Init();
            SfNumericUpDownRenderer.Init();
            SfExpanderRenderer.Init();
            SfRatingRenderer.Init();
            SfCheckBoxRenderer.Init();
            SfListViewRenderer.Init();
            SfBadgeViewRenderer.Init();
            SfBusyIndicatorRenderer.Init();
            SfComboBoxRenderer.Init();
            SfCalendarRenderer.Init();
            SfButtonRenderer.Init();
            SfCardViewRenderer.Init();
            SfBorderRenderer.Init();


            LoadApplication(new App(new iOSInitializer()));

            return(base.FinishedLaunching(app, options));
        }
Exemplo n.º 29
0
 public MainPage()
 {
     this.InitializeComponent();
     SfListViewRenderer.Init();
     SfDataFormRenderer.Init();
     LoadApplication(new PickerItemsFromSQLite.App());
 }
Exemplo n.º 30
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)
        {
            // copy db when in place
            CopyDB("individual.db3", "ArabWaha.Employee.iOS.Resources.individual.db3");

            global::Xamarin.Forms.Forms.Init();
            LoadApplication(new App());
            CarouselViewRenderer.Init();
            SlideOverKit.iOS.SlideOverKit.Init();

            // syncfusion inits
            new SfBusyIndicatorRenderer();
            new SfAutoCompleteRenderer();
            new SfScheduleRenderer();
            new SfRotatorRenderer();
            SfListViewRenderer.Init();

            new GaugeControl();
            new CheckBox();
            new CheckBoxRenderer();



            return(base.FinishedLaunching(app, options));
        }