Flutter Staggered Animations

ref – https://pub.dev/packages/flutter_staggered_animations/

result (.mov)

In your pubspec.yaml file, include

We use AnimationConfiguration.toStaggeredList with a duration of Duration(milliseconds: 1375).

We then fill in the childAnimationBuilder, which is the specified way on how to animate each widget in the List. The idea here is that we wrap this widget with FadeInAnimation and SlideAnimation. It’s a combination effect.

Hence, what we’ve stated in childAnimationBuilder is that for each child widget, we want to apply the slide and fade in animation to each widget.

This is for fade in on lists.

Full Code