Esempio n. 1
0
        public App()
        {
            current = this;
            InitializeComponent();
            ViewModelBase.Init();
            // The root page of your application
            switch (Device.OS)
            {
            case TargetPlatform.Android:
                MainPage = new RootPageAndroid();
                break;

            case TargetPlatform.iOS:
                MainPage = new EvolveNavigationPage(new RootPageiOS());
                break;

            case TargetPlatform.Windows:
            case TargetPlatform.WinPhone:
                MainPage = new RootPageWindows();
                break;

            default:
                throw new NotImplementedException();
            }
        }
Esempio n. 2
0
 public App(IDevice device)
 {
     current = this;
     InitializeComponent();
     ViewModelBase.Init();
     // The root page of your application
     switch (Device.OS)
     {
         case TargetPlatform.Android:
             MainPage = new RootPageAndroid(device);
             break;
         case TargetPlatform.iOS:
             MainPage = new EvolveNavigationPage(new RootPageiOS(device));
             break;
         case TargetPlatform.Windows:
         case TargetPlatform.WinPhone:
             MainPage = new RootPageWindows(device);
             break;
         default:
             throw new NotImplementedException();
     }
 }