Пример #1
0
        public App()
        {
            Current = this;

            var isLoggedIn = Properties.ContainsKey("IsLoggedIn")?(bool)Properties ["IsLoggedIn"]:false;

            // we remember if they're logged in, and only display the login page if they're not
            if (isLoggedIn)
                MainPage = new MainPage();//Plenty.MainPageCS ();
            else
                MainPage = new LoginModalPage (this);
        }
Пример #2
0
 public void ShowLoginPage()
 {
     MainPage = new LoginModalPage (this);
 }
Пример #3
0
 public void Logout()
 {
     Properties ["IsLoggedIn"] = false; // only gets set to 'true' on the LoginPage
     MainPage = new LoginModalPage (this);
 }