animated_reorderable_list 0.0.2 copy "animated_reorderable_list: ^0.0.2" to clipboard
animated_reorderable_list: ^0.0.2 copied to clipboard

A Flutter Reorderable Animated List with simple implementation and smooth transition.

animated_reorderable_list #

A Flutter Reorderable Animated List with simple implementation and smooth transition.

Features #

  • Smooth transition when adding and removing items from the list.
  • List and Grid support.
  • Pre-built animation like fade,scale, slide, flip etc for Flutter list.
  • Drag and Drop support (in progress)

Demo #

List Animations #

Grid Animations #

How to use it? #

Sample app demonstrates how simple the usage of the library actually is.

SliverGridMotionList(
          items: list,
          scrollDirection: Axis.vertical,
          itemBuilder: (BuildContext context, int index) {
            return ItemCard(index: index);
          },
          insertDuration: Duration(milliseconds: 200),
          insertAnimation: AnimationType.scaleInTop,
          removeAnimation: AnimationType.fadeInDown,
          sliverGridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
              crossAxisCount: 5),
        ),

Bugs and Feedback #

For bugs, questions and discussions please use the Github Issues.

Credits #

animated_reorderable_list is owned and maintained by the Canopas team. You can follow them on Twitter at @canopassoftware for project updates and releases.

Inspired by recyclerview-animators in Android.

49
likes
0
pub points
86%
popularity

Publisher

verified publishercanopas.com

A Flutter Reorderable Animated List with simple implementation and smooth transition.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on animated_reorderable_list