示例#1
0
        public override void OnCreate()
        {
            base.OnCreate();

            //Asociamos el AutoMapper
            LocalConfig.Mapper = AutomapperConfig.CreateMapper();
        }
示例#2
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            AppCenter.Start("7dd2f4f9-b101-4f26-abed-c335e8e46bd6",
                            typeof(Analytics), typeof(Crashes));
            AppCenter.Start("7dd2f4f9-b101-4f26-abed-c335e8e46bd6", typeof(Analytics), typeof(Crashes));
            //Nuget de popups
            Rg.Plugins.Popup.Popup.Init();

            //Asociamos el AutoMapper
            LocalConfig.Mapper = AutomapperConfig.CreateMapper();

            //Inicializamos el IoC (Inyeccion de dependencia)
            IOSIOCConfiguration.Instance.Init();


            global::Xamarin.Forms.Forms.Init();
            ZXing.Net.Mobile.Forms.iOS.Platform.Init();

            LoadApplication(new App());
            UIApplication.SharedApplication.SetStatusBarStyle(UIStatusBarStyle.LightContent, true);

            //UIBarButtonItem.Appearance.SetBackButtonTitlePositionAdjustment(new UIOffset(-100, -60), UIBarMetrics.Default);
            //UIBarButtonItem.Appearance.SetTitlePositionAdjustment(new UIOffset(-100, 1), UIBarMetrics.Default);
            UIBarButtonItem.Appearance.SetBackButtonTitlePositionAdjustment(new UIOffset(-100, 0), UIBarMetrics.Default);

            //Firebase
            Firebase.Core.App.Configure();

            return(base.FinishedLaunching(app, options));
        }
示例#3
0
 private void Init()
 {
     _mapper = AutomapperConfig.CreateMapper();
 }