EdsonBueno / infinite_scroll_pagination

Flutter package to help you lazily load and display pages of items as the user scrolls down your screen.
https://pub.dev/packages/infinite_scroll_pagination
MIT License
624 stars 211 forks source link

pagination with stream #185

Closed shahmirzali49 closed 1 year ago

shahmirzali49 commented 2 years ago

can we use stream with this package? I want to paginate and update my data periodically. ( Stream.period)

clragon commented 1 year ago

this package works by doing pagination when requested. this is not how a periodic stream works; I dont think it makes sense to use this package if thats your usecase. you can always manually set the items on the controller how you wish, however.