-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpagination.dart
63 lines (53 loc) · 1.57 KB
/
pagination.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
use an EasyListView to implement pagination in flutter
new EasyListView(
loadMore: hasNewPage,
onLoadMore: () {
if (hasNewPage) {
hasNewPage = false;
_diaryAPICall(false,true); // call the api
}
},
loadMoreWhenNoData: false,
itemCount: _diaryList.length,
itemBuilder: (context, index) {
return new Row(
children: <Widget>[
datePrinter(index),
timeLineCreator(index),
],
);
},
);
//// API call
void _diaryAPICall(bool diaryListClear, bool isPageCountIncrement) async
{
if (diaryListClear) {
_diaryList.clear();
pageCount = 1;
setState(() {
_handleError = false;
showLoadingProgress = true;
});
}
else {
if (isPageCountIncrement) {
pageCount++;
}
}
String _search = _textEditingController.text.trim();
if (_search == null && _search == "") {
_search = "-1";
}
_presenter.doFetchDiaryListFromServer(lastUpdated, context,
startDate: _filterData?.fromDate?.millisecondsSinceEpoch ?? -1,
endDate: _filterData?.toDate?.millisecondsSinceEpoch ?? -1,
search: _search,
pageC: pageCount,
);
}
//
//heare is a veriable called pageC it will reprecent the page count as limit
more about pagination refer the links
https://blog.solutelabs.com/paginate-your-data-in-flutter-7744995febd1
https://pub.dev/packages/paging
https://medium.com/@jun.chenying/flutter-tutorial-part-5-listview-pagination-scroll-up-to-load-more-ed132f6a06be