auto_animated_list 1.0.1 auto_animated_list: ^1.0.1 copied to clipboard
ListView Widget that supports automatic animations when list items are changed.
auto_animated_list #
AutoAnimatedList Widget that supports automatic animations when list items are changed.
example #
How to use #
AutoAnimatedList<Fruit>(
items: fruits,
itemBuilder: (context, fruit, index, animation) {
return SizeFadeTransition(
animation: animation,
child: ListTile(
leading: Text('${index + 1}'),
title: Text(fruit.name),
),
);
},
),
Full example #
An example showing how to set up and use AutoAnimatedList widget.