Reputation: 31
there. I'm starting to learn animation in Flutter and I don't know how to make the listview of item appear gradually like this gif: animation item of listview
Upvotes: 3
Views: 907
Reputation: 81370
As other's said, you can use AnimatedList
in combination with SlideTransition
to achieve the effect in the above video. You can see my answer with full demo in another similar question here.
Upvotes: 1