as i have mentioned on the title, i have tried many ways to use the CupertinoSliverRefreshControl to work along with the superscaffold, but never successfull.
body: CustomScrollView(
slivers: [
CupertinoSliverRefreshControl(
onRefresh: () {
print("refreshing ...");
return ref.refresh(skillsProvider.future);
},
// child: EasyRefresh(
// child: myPagedListView(ref),
// ),
),
SliverFillRemaining(
child: myPagedListView(ref),
)
],
),
to resolve this problem, give me a workign example
2
Answers
Yes i did that. it works, but i still have some issues. `body:
` since PagedListView a scrollable, when i add the physics eventhough the refreshindicator works, I cannot scroll the myPagedListView widgets.
Try adding
physics