Issue
I am trying to insert pagination in my flutter app, which will look exactly like the ine in facebook. I have read about infinite_scroll_pagination package, but I was not able to achieve it. Can anyone help me on this please?
Solution
For this you should use refreshindicator as shown in official flutter docs.
RefreshIndicator(
onRefresh: _onRefresh,
child: ListView(
padding: EdgeInsets.all(8.0),
physics: const BouncingScrollPhysics(parent: AlwaysScrollableScrollPhysics()),
children: _listData.map((i) {
return ListTile(
title: Text("Item $i"),
);
}).toList(),
)
);
Answered By - Ruchit



0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.