Ejemplo n.º 1
0
        private async Task GetFavList()
        {
            //favViewModel = new FavViewModel();
            //await fvvm.GetFavs();
            await fvvm.GetListCollection();

            //MyFavList.ItemsSource = fvvm.CollectionsList;
            //   BindingContext = fvvm;
        }
Ejemplo n.º 2
0
        private async void txtDescription_Completed(object sender, EventArgs e)
        {
            var b = await fvm.AddNewCollection().ConfigureAwait(false);

            if (b)
            {
                await fvm.GetListCollection();

                Navigation.PopModalAsync(true);
            }
        }