react-native-sortable-multilist
react-native-sortable-multilist copied to clipboard
moving item into another list
Hi, I'm trying to make 2D draggable item list, with each item has it's own order in a list.
I understand that I can change an item by drag and drop into a list,
for example, by moving Foo-0 into the Foo list.
Foo-0 Bar-0 Foo-1 Bar-0
Foo-1 Bar-1 Foo-2 Bar-1
Foo-2 Bar-2 => Foo-3 Bar-2
Foo-3 Bar-3 Foo-0 Bar-3
Foo-4 Foo-4
What I want is moving an item into another list like this.(move Foo-0 into the Bar list)
Foo-0 Bar-0 Foo-1 Bar-0
Foo-1 Bar-1 Foo-2 Bar-1
Foo-2 Bar-2 => Foo-3 Foo-0
Foo-3 Bar-3 Foo-4 Bar-2
Foo-4 Bar-3
Can you help me it working? Thanks.
@joonhyung i have similar requirement any luck ?