Issues Fixed

aamir_dev
Faiz Hashmi 1 year ago
parent 4370f36ab2
commit e2a1ee7f58

@ -41,7 +41,11 @@ class _FavoriteListViewState extends State<FavoriteListView> {
title: LocaleKeys.favoriteList.tr(), title: LocaleKeys.favoriteList.tr(),
isRemoveBackButton: false, isRemoveBackButton: false,
), ),
body: SizedBox( body: RefreshIndicator(
onRefresh: () async {
await context.read<AppointmentsVM>().getMyFavoriteProviders();
},
child: SizedBox(
width: double.infinity, width: double.infinity,
height: double.infinity, height: double.infinity,
child: Column( child: Column(
@ -80,6 +84,7 @@ class _FavoriteListViewState extends State<FavoriteListView> {
], ],
), ),
), ),
),
); );
}, },
); );

Loading…
Cancel
Save