itisnajim / reorderable_staggered_scroll_view

MIT License
3 stars 4 forks source link

Disable Multi-Touch/Drag #8

Open hkm5558 opened 1 month ago

hkm5558 commented 1 month ago

How do I prevent multiple elements from dragging at the same time when I start dragging on an element and I don't let go while another finger starts dragging on other or currently dragging elements there will be an interactive reaction which will lead to unexpected effects

hkm5558 commented 1 month ago

How do I prevent multiple elements from dragging at the same time when I start dragging on an element and I don't let go while another finger starts dragging on other or currently dragging elements there will be an interactive reaction which will lead to unexpected effects

a simple solution maxSimultaneousDrags: isDragStart ? 0 : 1, can fix that