Member-only story
Pagination in Flutter with Generics: Write Once and use Anywhere.
Learn how to build pagination in Flutter with Generics.

Chapters:
- Learn Data Structures the fun way: Anagram Game
- Scarne’s Dice: A fun way to learn Flutter and Bloc
- Pagination in Flutter with Generics: Write Once and use Anywhere
- More to come …
In the previous workshops, we worked on Lists, HashMaps, and HashSets and learned State Management with Bloc. In this workshop, we will build Pagination in Flutter.
Contents:
- Who is the target Audience for this article?
- Why write on Pagination?
- What is our end goal?
- Building core files for this project.
- Building the UI.
- Create ScrollEndMixin
- Building the bloc files
- Integrating the bloc into UI
- Abstracting the bloc and the logic
- Let’s put everything together
Who is the target audience for this article?
Easy peasy, this article aims to help newcomers and intermediates. Experts already know this. They have probably moved on to the next chapter.
This article is for those who are still learning and looking for better examples to learn from.
There is one more faction that this article is for. The ones who have developed something far more efficient. Help us all and paste your solution, and explain why your code is better.
Why write on Pagination?
There are already many articles and write-ups explaining pagination. So how does this do anything for me?
So this article aims to build better protocols for writing code and understanding why to use generics.
Since this is in continuation of our existing series, from Learn Data Structures the fun way: Anagram Game, this article assumes you know how to set up a project…