mukai masakazu
mukai masakazu

Reputation: 13

Draggable and ReorderableListView in Flutter

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.

image

Upvotes: 0

Views: 1211

Answers (1)

K K Muhammed Fazil
K K Muhammed Fazil

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.

Draggable widget details

Upvotes: 1

Related Questions