Home > Back-end >  How can we paginate using riverpod?
How can we paginate using riverpod?

Time:05-06

I have network request to call with page , which approach would be better for pagination with riverpod using it for the first time , do i go with state notifier or change notifier for this please guide.

CodePudding user response:

On freecodecamp there is a detailed guide on how to implement infinite pagination using Riverpod, you should be able to follow it step by step:

https://www.freecodecamp.org/news/infinite-pagination-in-flutter-with-riverpod/

  • Related