draggable_animation 0.0.2 copy "draggable_animation: ^0.0.2" to clipboard
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.

Demo


✨ 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 #

Feel free to open issues or pull requests if you'd like to contribute or report bugs.

6
likes
0
points
56
downloads

Publisher

unverified uploader

Weekly Downloads

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.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on draggable_animation