Hi guys, thanks for this library and the effort that you are putting into it. I have a question, is it possible to solve moving items between 2 or more sections?
I found this type def:
export type ItemDragSettings = {
/** Controls in which directions items can be dragged beyond container bounds */
overDrag: OverDrag;
/** Determines whether reordering is triggered from item center or touch point */
reorderTriggerOrigin: ReorderTriggerOrigin;
...
export type OverDrag = 'both' | 'horizontal' | 'none' | 'vertical';
Maybe this OverDrag is related to this feature?
Hi guys, thanks for this library and the effort that you are putting into it. I have a question, is it possible to solve moving items between 2 or more sections?
I found this type def:
Maybe this
OverDragis related to this feature?