auto_animated_list 2.0.0 copy "auto_animated_list: ^2.0.0" to clipboard
auto_animated_list: ^2.0.0 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.

44
likes
160
points
990
downloads
screenshot

Publisher

verified publishereterkit.com

Weekly Downloads

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