auto_animated_list 1.0.2 copy "auto_animated_list: ^1.0.2" to clipboard
auto_animated_list: ^1.0.2 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 #

Source code

An example showing how to set up and use AutoAnimatedList widget.

33
likes
0
pub points
84%
popularity

Publisher

verified publishereterkit.com

ListView Widget that supports automatic animations when list items are changed.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

diffutil_dart, flutter

More

Packages that depend on auto_animated_list