platform/packages/pagination
2024-12-15 14:34:50 -07:00
..
example add: adding pagination package 2024-12-15 14:34:50 -07:00
lib add: adding pagination package 2024-12-15 14:34:50 -07:00
test add: adding pagination package 2024-12-15 14:34:50 -07:00
.analysis-options add: adding pagination package 2024-12-15 14:34:50 -07:00
.gitignore add: adding pagination package 2024-12-15 14:34:50 -07:00
analysis_options.yaml add: adding pagination package 2024-12-15 14:34:50 -07:00
AUTHORS.md add: adding pagination package 2024-12-15 14:34:50 -07:00
CHANGELOG.md add: adding pagination package 2024-12-15 14:34:50 -07:00
LICENSE add: adding pagination package 2024-12-15 14:34:50 -07:00
pubspec.yaml add: adding pagination package 2024-12-15 14:34:50 -07:00
README.md add: adding pagination package 2024-12-15 14:34:50 -07:00

Angel3 Paginate

Pub Version (including pre-releases) Null Safety Discord License

Platform-agnostic pagination library, with custom support for the Angel3.

Installation

In your pubspec.yaml file:

dependencies:
  platform_pagination: ^6.0.0

Usage

This library exports a Paginator<T>, which can be used to efficiently produce instances of PaginationResult<T>. Pagination results, when serialized to JSON, look like this:

{
  "total" : 75,
  "items_per_page" : 10,
  "previous_page" : 3,
  "current_page" : 4,
  "next_page" : 5,
  "start_index" : 30,
  "end_index" : 39,
  "data" : ["<items...>"]
}

Results can be parsed from Maps using the PaginationResult<T>.fromMap constructor, and serialized via their toJson() method.

To create a paginator:

import 'package:platform_pagination/platform_pagination.dart';

void main() {
  var p = new Paginator(iterable);
  
  // Get the current page (default: page 1)
  var page = p.current;
  print(page.total);
  print(page.startIndex);
  print(page.data); // The actual items on this page.
  p.next(); // Advance a page
  p.back(); // Back one page
  p.goToPage(10); // Go to page number (1-based, not a 0-based index)
}

The entire Paginator API is documented, so check out the DartDocs.

Paginators by default cache paginations, to improve performance as you shift through pages. This can be especially helpful in a client-side application where your UX involves a fast response time, i.e. a search page.