draggable_animation 0.0.2
draggable_animation: ^0.0.2 copied to clipboard
A Flutter package that enables smooth drag-and-drop animations between menu areas, inspired by iOS-style rearranging. Perfect for custom animated menus and item sorting.
flutter_animation_draggable #
A smooth, customizable drag-and-drop animation library for Flutter — inspired by iOS-style app rearranging. Create interactive menus or reorderable UI elements with ease.

✨ Features #
- Drag & drop between menu areas
- Animated movement and reordering
- Works with
Stack,AnimatedPositioned, and global coordinate tracking - Responsive design — works on different screen sizes
- Support for both grid and row layouts
🚀 Getting Started #
1. Add dependency #
dependencies:
draggable_animation : ^0.0.1
Usage #
SizedBox(
height: 300,
width: double.infinity,
child: DraggaleAnimationMaker(
items: monthList,
displayer: DraggaleAnimationMakerGridDisplay(
columnCount: 4,
rowHeight: 80,
spacingX: 20,
spacingY: 20
),
// duration: Duration(milliseconds: 100),
builder: (data) => _buildCard(data),
// feedbackBuilder: (data) => _buildCard(data,feedback: true), //custom style
),
),
👤 Contact Me #
- GitHub: horlengg
- Portfolio: horleng.vercel.app
Feel free to open issues or pull requests if you'd like to contribute or report bugs.