refresh_pagination_list 0.0.1 copy "refresh_pagination_list: ^0.0.1" to clipboard
refresh_pagination_list: ^0.0.1 copied to clipboard

Refresh and Pagination list

Refresh and pagination list to update and paginate list

Features #

Pull to refresh and paginate listview.builder

Getting started #

put RefreshPaginationList widget and put required parameters

Usage #

class Example extends StatelessWidget{
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Refresh Pagination List',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        body: RefreshPaginationList(
          listItem: (index) => Container(
            height: 100,
            color: Colors.teal,
            width: 50,
            margin: EdgeInsets.all(10),
          ),
          totalItems: 10,
          refreshList: () {},
          swipeList: () {},
          swipeLoader: false,
          refreshLoader: true,
        ),
      ),
    );
  }
}

Additional information #

6
likes
90
pub points
11%
popularity

Publisher

unverified uploader

Refresh and Pagination list

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on refresh_pagination_list