示例#1
0
        public override async void TabActiveChanged()
        {
            if (IsActive)
            {
                var datas = await service.GetListMostPopular();

                if (datas == null)
                {
                    return;
                }
                ListDealItems = new List <ProductModel>(datas);
            }
        }