Reputation: 13
In addition to reordering the elements, I want to be able to delete them when I drag them to the trash
Flutter Draggable and ReorderableListView
I want to rearrange A, B, and C by drag and drop and delete them.
Upvotes: 0
Views: 1211
Reputation: 713
You can use Draggable Widget to this purpose. When dragging completed remove the specific item from the list. Check below site for more details.
Upvotes: 1