Exemple #1
0
        protected async void AddItemAsync()
        {
            if (IsBusy)
            {
                return;
            }

            IsBusy = true;
            var newShopPage = new ShopEditorPage(Refresh);
            await Page.Navigation.PushModalAsync(newShopPage);

            IsBusy = false;
        }
Exemple #2
0
 public void GoToShopEditor()
 {
     // Call to server which sends down server data and then adds the ShopEditorPage.
     ShopEditorPage.ServerRequestShopEditorAccess();
 }