A simple way to add pagination to your Flutter app. How to use:

    NumberPagination(
        onPageChanged: (int pageNumber) {
        setState(() {
            _counter = pageNumber;
        });
        },
        pageTotal: 50,
        pageInit: _counter, // picked number when init page
        colorPrimary: Colors.blue,
        colorSub: Colors.white,
        threshold: 7,
    ),

https://raw.githubusercontent.com/thanhdang198/flutter_number_pagination/main/Screenshot%202024-05-27%20at%2011.27.10.png!