Drag drop capable wrapper of ListView for React Native
The react-native-sortable-listview is a drag-drop capable wrapper for ListView in React Native. It allows for easy dragging and dropping of rows with automatic scrolling while dragging. While it is deprecated and not recommended for new projects due to lack of maintenance, it still provides a useful solution for implementing drag and drop functionality in React Native applications.
To install react-native-sortable-listview in your project, run the following npm command:
npm install react-native-sortable-listview --save
Then import SortableListView in your component as follows:
import SortableListView from 'react-native-sortable-listview'
Although react-native-sortable-listview is deprecated and lacks active maintenance, it continues to offer valuable features for implementing drag and drop functionality in React Native applications. It provides a convenient solution for reordering rows within a ListView with features such as automatic scrolling, customizable styling, and event handlers for various interactions. While it is not recommended for new projects, it can be considered for existing projects or for temporary solutions where drag and drop functionality is required in a React Native application.