Flutter : click-and-drag items in a list

Viewed 30

i'm searching a widget to display a list of items and, with an animation, i would like to move the order of the items in the list with click-and-drag.

enter image description here

2 Answers

You can use the ReorderableListView Widget to this. Here is a tutorial from Flutter Devs!

Its already provide by flutter. You can create withour any addtional package with ReorderableListView .

documentation:

A list whose items the user can interactively reorder by dragging.

 ReorderableListView(
    buildDefaultDragHandles: false,
    onReorder:(int oldIndex, int newIndex){}
     children: []
Related