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; }