Auto Animated List | Coderz Repository

auto_animated_list

Last updated:

0 purchases

auto_animated_list Image
auto_animated_list Images

Free

Languages

Categories

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.

Files In This Product: (if this is empty don't purchase this product)

Customer Reviews

There are no reviews.