auto_animated_list

Creator: coderz1093

Last updated:

Add to Cart

Description:

auto animated list

auto_animated_list #
Zero boilerplate AutoAnimatedList Widget that supports automatic animations when list items are changed.
Preview #
(Keep in mind that gif will not show the actual performance of the widget)

Example usage #
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),
),
);
},
),
copied to clipboard
Full example #
Source code
An example showing how to set up and use AutoAnimatedList widget.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.