animated_reorderable_list 0.0.1 animated_reorderable_list: ^0.0.1 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 animations when adding and removing items from the list.
- List and Grid support.
- Easily customize animation styles and duration to Flutter list.
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.