itemsChanged property

void Function(List<T> items)? itemsChanged
getter/setter pair

!!! This is not possible in flutter right now because there is no possibility to cancel a drag drop Operation from code Probably because mobile devices dont's have a ESC key...???

return true, if the selected item or the selected items can be dragged allowDrag or allowReorder must be true this callback is called onDragStart

bool Function(BuildContext context, MhDragState dragState)? allowDragStart;

Function is called at the end of a successfull drag drop operation It is called after setSortPos - so you can use it e.g. to execute a saveChanges.

Implementation

/// Function is called at the end of a successfull drag drop operation
/// It is called after setSortPos - so you can use it e.g. to execute a saveChanges.
void Function(List<T> items)? itemsChanged;