modest_pagination 0.0.1+1 copy "modest_pagination: ^0.0.1+1" to clipboard
modest_pagination: ^0.0.1+1 copied to clipboard

Attempt at modularizing my own pagination. It is a simple to use pagination component (that most suites my needs and may fit into your needs too)

ModestPagination #

This is a simple to use pagination component (that most suites my needs and may fit into your needs too)

Usage #

Add dependency #

dependencies:
  modest_pagination: <version>

Or #

flutter pub add modest_pagination

Import package #

  import 'package:modest_pagination/modest_pagination.dart';

Usage #

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();
    },
)

Check example for more details

Screenshot #

GridView ListView
4
likes
120
pub points
48%
popularity

Publisher

verified publisheriamngoni.co.zw

Attempt at modularizing my own pagination. It is a simple to use pagination component (that most suites my needs and may fit into your needs too)

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter, handy_extensions

More

Packages that depend on modest_pagination