pdrpulm 1.0.0 copy "pdrpulm: ^1.0.0" to clipboard
pdrpulm: ^1.0.0 copied to clipboard

discontinued
outdatedDart 1 only

Pull Down to Refresh & Pull Up to Load More

pdrpulm (Pull Down to Refresh & Pull Up to Load More) #

A widget that supports "Pull Down to Refresh & Pull Up to Load More" idiom. Google Material never have "Pull Up to Load More" so implement as a package.

Getting Started #

Widget build(BuildContext context) {
    return new ScrollIndicator(
        onLoadMore: onLoadMore,
        child: new ListView.builder(
            itemCount: itemCount,
            itemBuilder: (BuildContext context, int index) {
              return new Container(
                height: 150.0,
                decoration: new BoxDecoration(border: new Border.all()),
                child: new Indicator(index.toString()),
              );
            }));
  }

Publish #

The indicator position may be wrong.

0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Pull Down to Refresh & Pull Up to Load More

Repository
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on pdrpulm