Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to drag ReorderableListView items to another ReorderableListView?

Tags:

flutter

I'm trying to drag an item from one ReorderableListView into another ReorderableListView.

It seems it is only possible by using a regular ListView with Dragable and DragTarget widgets and without the look and feel of a ReorderableListView.

Am I right or is there a way?

like image 725
krema Avatar asked Dec 09 '25 21:12

krema


1 Answers

This is a bit delayed but I'm leaving this answer for anyone else that landed here after searching:

Consider using this flutter package: https://pub.dev/packages/drag_and_drop_lists

gif of items and lists being reordered

Features

  • Reorder elements between multiple lists
  • Reorder lists
  • Drag and drop new elements from outside of the lists
  • Vertical or horizontal layout
  • Use with drag handles, long presses, or short presses
  • Expandable lists
  • Can be used in slivers
  • Prevent individual lists/elements from being able to be dragged
  • Easy to extend with custom layouts
like image 174
Cymk Avatar answered Dec 12 '25 02:12

Cymk