How to drag and sort in React Native

I am new to React native and I am looking for a good way to have a sorted list. As far as I know, I could not find any good examples that I could reproduce (although there is one repo that they worked on). Without dragging and dropping HTML5, what is the main strategy for dragging and sorting with React Native? Thanks.

+6
source share
1 answer

React Your Own Sortable List

I tested about 5 different solutions, none of which worked very well, especially on Android, so I invested a day of programming to update the most promising ones, which were react my own sortable list .

Now it works great on both iOS and Android. Here the animation is in action on both platforms (click the image to see the gif).

Animation

+4
source

All Articles