public override async void TabActiveChanged() { if (IsActive) { var datas = await service.GetListMostPopular(); if (datas == null) { return; } ListDealItems = new List <ProductModel>(datas); } }