Example #1
0
 protected override void OnCreate(Bundle bundle)
 {
     base.OnCreate(bundle);
     global::Xamarin.Forms.Forms.Init(this, bundle);
     NControlViewRenderer.Init();
     LoadApplication(new 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();
            NControlViewRenderer.Init();
            LoadApplication(new App());

            return(base.FinishedLaunching(app, options));
        }
Example #3
0
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            UINavigationBar.Appearance.BarTintColor = AppColors.LightPurple.ToPlatformColor();
            UINavigationBar.Appearance.TintColor    = AppColors.DarkPurple.ToPlatformColor();
            Xamarin.Forms.Forms.Init();
            NControlViewRenderer.Init();

            LoadApplication(new App());
            return(base.FinishedLaunching(application, launchOptions));
        }
Example #4
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)
        {
            new Syncfusion.SfChart.XForms.iOS.Renderers.SfChartRenderer();
            global::Xamarin.Forms.Forms.Init();
            NControlViewRenderer.Init();

            LoadApplication(new App());

            return(base.FinishedLaunching(app, options));
        }
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

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

            LoadApplication(new App(new ContainerProvider(), (container) => container.Register <IImageProvider, ImageProvider>()));
        }
Example #6
0
        // Constructor
        public MainPage()
        {
            InitializeComponent();

            Forms.Init();
            NControlViewRenderer.Init();
            NControls.Init();

            LoadApplication(new FormsApp.MyApp());
        }
Example #7
0
        protected override void OnCreate(Bundle bundle)
        {
            TabLayoutResource = App2.Droid.Resource.Layout.Tabbar;
            ToolbarResource   = App2.Droid.Resource.Layout.Toolbar;

            base.OnCreate(bundle);

            global::Xamarin.Forms.Forms.Init(this, bundle);
            NControlViewRenderer.Init();
            LoadApplication(new App());
        }
Example #8
0
        public MainPage()
        {
            InitializeComponent();

            SupportedOrientations = SupportedPageOrientation.PortraitOrLandscape;

            Forms.Init();
            NControlViewRenderer.Init();
            NControls.Init();

            LoadApplication(new FormsApp.MyApp());
        }
Example #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)
        {
            var temp = new CustomProgressBarRenderer();

            //set default progress bar color
            UIProgressView.Appearance.TintColor = global::Xamarin.Forms.Color.FromHex("#3fc0ff").ToUIColor();

            global::Xamarin.Forms.Forms.Init();
            NControlViewRenderer.Init();             //Add this line <----------
            LoadApplication(new App());
            return(base.FinishedLaunching(app, options));
        }
Example #10
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();
            NControlViewRenderer.Init();
            NControls.Init();
            App.ScreenWidth  = (int)UIScreen.MainScreen.Bounds.Width;
            App.ScreenHeight = (int)UIScreen.MainScreen.Bounds.Height;
            LoadApplication(new App(new iOSInitializer()));
            UIApplication.SharedApplication.StatusBarHidden = true;

            return(base.FinishedLaunching(app, options));
        }
Example #11
0
        protected override void OnCreate(Bundle savedInstanceState)
        {
            TabLayoutResource = Resource.Layout.Tabbar;
            ToolbarResource   = Resource.Layout.Toolbar;

            base.OnCreate(savedInstanceState);

            Xamarin.Essentials.Platform.Init(this, savedInstanceState);
            global::Xamarin.Forms.Forms.Init(this, savedInstanceState);
            NControlViewRenderer.Init();
            LoadApplication(new App());
        }
Example #12
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            Forms.Init(this, bundle);
            LoadApplication(new App());
            Acr.UserDialogs.UserDialogs.Init(this);
            NControlViewRenderer.Init();

            // Screenshot service
            ScreenshotService.Activity = this;
        }
Example #13
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            global::Xamarin.Forms.Forms.Init(this, bundle);

            App.ScreenWidth   = Resources.DisplayMetrics.WidthPixels;
            App.ScreenHeight  = Resources.DisplayMetrics.HeightPixels;
            App.ScreenDensity = Resources.DisplayMetrics.Density;

            NControlViewRenderer.Init();

            LoadApplication(new App());
        }
Example #14
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            global::Xamarin.Forms.Forms.Init();
            Xamarin.FormsMaps.Init();
            NControlViewRenderer.Init();

            LoadApplication(new App(new ContainerProvider(), (container) => {
                // Register providers
                container.Register <IImageProvider, ImageProvider>();
            }));

            return(base.FinishedLaunching(app, options));
        }
Example #15
0
 protected override void OnCreate(Bundle savedInstanceState)
 {
     TabLayoutResource = Resource.Layout.Tabbar;
     ToolbarResource   = Resource.Layout.Toolbar;
     App.ScreenWidth   = (int)((double)Resources.DisplayMetrics.WidthPixels / (double)Resources.DisplayMetrics.Density);
     App.ScreenHeight  = (int)((double)Resources.DisplayMetrics.HeightPixels / (double)Resources.DisplayMetrics.Density);
     base.OnCreate(savedInstanceState);
     global::Xamarin.Forms.Forms.Init(this, savedInstanceState);
     NControlViewRenderer.Init();
     NControls.Init();
     UserDialogs.Init(this);
     LoadApplication(new App(new AndroidInitializer(this)));
 }
Example #16
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            global::Xamarin.Forms.Forms.Init();
            NControlViewRenderer.Init();

            // Code for starting up the Xamarin Test Cloud Agent
                        #if ENABLE_TEST_CLOUD
            Xamarin.Calabash.Start();
                        #endif

            LoadApplication(new App());

            return(base.FinishedLaunching(app, options));
        }
Example #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();

            NControlViewRenderer.Init();

            Xamarin.FormsGoogleMaps.Init("AIzaSyD3VBnviQxELZZlAItj5mkoVKozG-5yVQI");

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



            return(base.FinishedLaunching(app, options));
        }
Example #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();

            NControlViewRenderer.Init();

            App.ScreenWidth   = UIScreen.MainScreen.Bounds.Width;
            App.ScreenHeight  = UIScreen.MainScreen.Bounds.Height;
            App.ScreenDensity = 1;

            LoadApplication(new App());

            return(base.FinishedLaunching(app, options));
        }
Example #19
0
        // Constructor
        public MainPage()
        {
            InitializeComponent();

            Forms.Init();
            NControlViewRenderer.Init();

            LoadApplication(new Test.NewSolution.FormsApp.App(new ContainerProvider(), (container) =>
            {
                // Register providers
                container.Register <IRepositoryProvider, RepositoryProvider>();
                container.Register <IImageProvider, ImageProvider>();
            }));
        }
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            global::Xamarin.Forms.Forms.Init(this, bundle);
            Xamarin.FormsGoogleMaps.Init(this, bundle); // initialize for Xamarin.Forms.GoogleMaps
            NControlViewRenderer.Init();


            TabLayoutResource = Resource.Layout.tabs;
            ToolbarResource   = Resource.Layout.toolbar;

            LoadApplication(new App(new AndroidInitializer()));
        }
Example #21
0
        protected override async void OnCreate(Bundle bundle)
        {
            TabLayoutResource = Resource.Layout.Tabbar;
            ToolbarResource   = Resource.Layout.Toolbar;


            base.SetTheme(Resource.Style.MainTheme);
            base.OnCreate(bundle);

            await CrossMedia.Current.Initialize();

            global::Xamarin.Forms.Forms.Init(this, bundle);
            NControlViewRenderer.Init();
            LoadApplication(new App());
        }
Example #22
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            global::Xamarin.Forms.Forms.Init(this, bundle);
            NControlViewRenderer.Init();
            NControls.Init();
            LoadApplication(new App(new AndroidInitializer()));
            //SetPage(App.GetMainPage());

            if (ActionBar != null)
            {
                ActionBar.SetIcon(new ColorDrawable(Color.Transparent));
            }
        }
Example #23
0
        //  public  AuthenticationContext authContext = null;
        //private AuthenticationResult result = null;

        //public AuthenticationResult authResult {
        //    get { return result; }
        //    set {
        //        result = value;
        //    } }
        //public override void OnActivated(UIApplication uiApplication)
        //{
        //    base.OnActivated(uiApplication);


        //    //GetResult();


        //}

        //public async void GetResult()
        //{
        //    AuthenticationContext authContext = new AuthenticationContext(authority);
        //    var pvc = GetViewControllerCurrent();

        //    var ptParams = new PlatformParameters(pvc,false, PromptBehavior.Always);

        //    authResult = await authContext.AcquireTokenAsync(NativeJsseConstants.WebApiAppIdUri, NativeJsseConstants.NativeAppId, NativeJsseConstants.RedirectURI, ptParams);


        //}
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            global::Xamarin.Forms.Forms.Init();
            NControlViewRenderer.Init();
            string dbPath = FileAccessHelper.GetLocalFilePath("PAP.db3");

            //LoadApplication(new App(new iOSInitializer()));
            //AzureADLoginHelper aad = new AzureADLoginHelper();
            //aad.SignIn();

            LoadApplication(new App(dbPath, new SQLitePlatformIOS(), new iOSInitializer()));
            Reachability.ReachabilityChanged += c_ReachabilityChanged;
            //var manager = BITHockeyManager.SharedHockeyManager;
            //manager.Configure("$Your_App_Id");
            //manager.StartManager();
            //manager.Authenticator.AuthenticateInstallation(); // This line is obsolete in crash only builds

            //App.PCA.RedirectUri = "https://jsse-dev.azurewebsites.net/.auth/login/done";
            return(base.FinishedLaunching(app, options));
        }
Example #24
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            TabLayoutResource = Resource.Layout.Tabbar;
            ToolbarResource   = Resource.Layout.Toolbar;


            global::Xamarin.Forms.Forms.Init(this, bundle);
            Xamarin.FormsMaps.Init(this, bundle);
            IconEntryRenderer.Init();
            AppCenter.Start("b0585775-e91e-4607-93e8-d36b1dcc2273",
                            typeof(Analytics), typeof(Crashes));

            NControlViewRenderer.Init();
            try
            {
                LoadApplication(new App());
            }catch (System.Exception ex) {
                Console.WriteLine(ex);
            }
        }