Last updated:
0 purchases
flutter paging
flutter_paging #
Paging your widgets. Decoupling UI and data.
Note: This plugin is still under development. Pull Requests are most welcome.
Installation #
First, add flutter_paging as a dependency in your pubspec.yaml file.
Widgets Included #
PagingView : Base paging view.
PagingListView : Quick implementation of ListView supports paging.
KeyedDataSource #
KeyedDataSource is core of paging. Try something else with KeyedDataSource
Note: don't forget to call dataSource.init()
Example #
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Paging ListView"),
),
body: RefreshIndicator(
onRefresh: widget.dataSource.refresh,
child: PagingListView<String>.builder(
itemBuilder: (context, index, item) {
return Card(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Text("paging->$item"),
));
},
dataSource: widget.dataSource,
loadingIndicator: Center(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: CircularProgressIndicator(),
),
),
noMoreDataAvailableItem: Center(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Text("no more data avaliable~"),
),
),
),
),
);
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.