Exemplo n.º 1
0
Arquivo: App.cs Projeto: adbk/spikes
        public static void Init(AppSetup appSetup)
        {
            _container = appSetup.CreateContainer();

            NaviService = _container.Resolve<INavigationService>() as NavigationService;
            AccentColor = _container.Resolve<IThemer>().AccentColor;

            WelcomePage = new WelcomePage();
            LoginPage = new LoginPage();
            CategoriesListPage = new CategoriesListPage();

            // Startup Page
            StartupPage = WelcomePage;// CategoriesListPage;
        }