animate_list library
Classes
-
AnimateList<
T extends Widget> -
Applies animated effects to a list of widgets. It does this by wrapping each
widget in Animate, and then proxying calls to all instances. It can
also offset the timing of each widget's animation via
interval
.
Extensions
-
AnimateListExtensions
on List<
Widget> -
Wraps the target
List<Widget>
in a AnimateList instance. Ex.[foo, bar].animate()
is equivalent toAnimateList(children: [foo, bar])
.