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
605 stars 201 forks source link

How to handle item deletion? #314

Closed andrespd99 closed 4 months ago

andrespd99 commented 4 months ago

I have a paginated list of inbox notifications with the option to delete and take out of the list. Is there a way to achieve this? I don't know how to notify the PagingController the item deletion without having to call refresh() and append the entire updated list.

clragon commented 4 months ago

You can copyWith the PagingState with new items.