private void RefreshListView() { dealsListview.RefreshCommand = new Command(async() => { ivm = new IntroPageViewModel(); ivm.GetDeals(); ivm.GetCategories(); ivm.GetAll(); // await Task.Delay(3000); ivm.GetAllThisWeek(); var groupByDate = GroupListByDate(); //GlobalStaticFields.GetAllGrouping = groupByDate; BindingContext = groupByDate; await Task.Delay(3000); dealsListview.IsRefreshing = false; }); }
public AppLanding() { InitializeComponent(); try { ivm = new IntroPageViewModel(); ivm.GetDeals(); ivm.GetCategories(); ivm.GetAll(); ivm.GetAllSearchFromNewModel(); ivm.GetAllThisWeek(); Deals_Tapped(this, null); ShowSurVeyOne(); } catch (Exception ex) { var log = ex; } }
public AppLanding() { InitializeComponent(); try { ivm = new IntroPageViewModel(); mcvm = new MyCreatedCollectionViewModel(); ivm.GetDeals(); ivm.GetCategories(); ivm.GetAll(); ivm.GetAllSearchFromNewModel(); ivm.GetAllThisWeek(); ivm.Initializefavourites(); mcvm.InitializeFavListNewUI(); ThisWeek_Tapped(this, null); ShowSurVeyOne(); this.BindingContext = this; } catch (Exception ex) { var log = ex; } }