react-native-sortable-list icon indicating copy to clipboard operation
react-native-sortable-list copied to clipboard

React Native Sortable List component

Results 115 react-native-sortable-list issues
Sort by recently updated
recently updated
newest added

When I try to drag an element from the middle of the list to the bottom, and I pass through the sortable-list's footer, the container send the objects inside the...

{ this._order = nextOrder }} onReleaseRow={(key) => this._releaseRow(this._order, key)} data={this.state.bucket} renderRow={this._renderRow} /> _releaseRow = (order, key) => { let release_key = 1 let array_id = [] if(order){ for(let i =...

Hi everyone, I'm using react-native-sortable-list and react-native-swipe-list-view in order to create a sortable list with swipeable row, (see code bellow) but currently it results in a list with swipeable row...

Hi! When i update the data and try to move an element to my list, i received an error: `TypeError: TypeError: TypeError: undefined is not an object (evaluating 'this.state.data.length')` This...

Any advice here regarding a "flicker" I see across the whole list when I delete just one row from the list. I have tried the same thing with the react-native...

I'm trying to use this module with a simple text listview, but the performance is still not very good. On Android and iOS the movement is choppy. (Even with jsdev...

Maybe even allow for a full set of ScrollView props?

How to re-render the data? I update the data but it is not output. [Sample code](https://github.com/StekolschikovV/pomdo/blob/master/src/screens/task/index.js#L34) on the line 34. ``` setInterval(() => { let d= this.state.data; d.push({ image: 'https://placekitten.com/200/240',...