Inheritance: NavigationPage
Example #1
0
        protected override async void OnStart()
        {
            // Handle when your app starts
            Account.Token = await Settings.GetTokenAsync();

            Account.Password = await Settings.GetPasswordAsync();

            Account.Username  = Settings.Username;
            Account.AccountId = Settings.AccountId;

            MainPage = new RootPage();
        }
Example #2
0
        public RootPage()
        {
            InitializeComponent();
            Instance = this;
            SetHasBackButton(this, false);

            Navigation.PushAsync(AppShell.Instance);
            if (!App.Instance.Account.IsLogined)
            {
                Navigation.PushAsync(LoginPage.Instance);
            }
        }