auto_animated_list 1.0.4 copy "auto_animated_list: ^1.0.4" to clipboard
auto_animated_list: ^1.0.4 copied to clipboard

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

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),
      ),
    );
  },
),

Full example #

Source code

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

33
likes
130
pub points
84%
popularity
screenshot

Publisher

verified publishereterkit.com

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

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

diffutil_dart, flutter

More

Packages that depend on auto_animated_list