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

Is it possible to insert a new item with animation? #323

Closed liujian-930212 closed 3 months ago

liujian-930212 commented 3 months ago

Just like AnimatedList does, insert or delete an item with an animation. If [infinite_scroll_pagination] has this feature, that would be asesome.

Thanks

clragon commented 3 months ago

Hi, Animating insertion or deletion of items is not the responsibility of this package, but rather the scrollview itself. You can make a PagedAnimatedList yourself with the components in the package. Maybe someday we get around to adding it to the package directly. There is an issue for that here: #21 Best regards!