Issues Fixed

aamir_dev
Faiz Hashmi 2 years ago
parent 4370f36ab2
commit e2a1ee7f58

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

Loading…
Cancel
Save