|
|
|
@ -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> {
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|