简洁分页
这是一个易于使用的分页组件(最符合我的需求,也可能符合您的需求)
用法
添加依赖
dependencies:
modest_pagination: <version>
或
flutter pub add modest_pagination
导入包
import 'package:modest_pagination/modest_pagination.dart';
用法
ModestPagination(
items: countries,
itemsPerPage: 8,
pagesPerSheet: 6,
activeTextColor: Colors.white,
inactiveTextColor: Colors.white70,
pagesControllerIconsColor: Colors.white,
sheetsControllerIconsColor: Colors.white,
useListView: true,
childWidget: (T element) {
return Container();
},
)
查看示例了解更多详情
截图
| GridView | ListView |
![]() |
![]() |

