paging 0.0.2 copy "paging: ^0.0.2" to clipboard
paging: ^0.0.2 copied to clipboard

outdated

A Flutter package for paginating a list view from network or local storage

paging #

A Flutter package for paginating a list view

Installation #

Add this to your package's pubspec.yaml file

dependencies:
  ...
  paging: ^0.2.5

Usage #

First import paging.dart

  import 'package:paging/paging.dart';

Simple to use. You can pass a type <T> as a parameter to the widget, by default dynamic is assumed.

There are two required parameters:

  • pageBuilder: requires a Future of List<T> and gives you the current size of list
  • itemBuilder: requires a widget and gives you the item of type <T> to be displayed
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text('Pagination List')),
      body: Pagination<String>(
        pageBuilder: (currentSize) => pageData(currentSize),
        itemBuilder: (item){
          return Container(
                    color: Colors.yellow,
                    height: 48,
                    child: Text(item),
                 );
        },
      ),
    );
  }

Screenshots #

Getting Started #

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

26
likes
0
pub points
72%
popularity

Publisher

unverified uploader

A Flutter package for paginating a list view from network or local storage

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on paging