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

Drag drop capable wrapper of ListView for React Native

Results 73 react-native-sortable-listview issues
Sort by recently updated
recently updated
newest added

When i am trying to use this library on web (through [react-native-web](https://github.com/necolas/react-native-web)) it throws: > index.js:389 Uncaught TypeError: Cannot read property 'easeInEaseOut' of undefined Because rn-web has no LayoutAnimation. So...

Is it possible add animation when I update order property value? I want to aniamate from `[0,1,2]` to `[2,0,1]`.

Will this move to FlatList instead of ListView ?? FlatList has a handy feature `scrollToItem` that I would like to use with this library.

When I used [react-navigate](https://reactnavigation.org) TabBar Component with react-native-sortable-listview that list freezes when I bring the active element to the edge of the screen. To solve the problem I use `disableAnimatedScrolling...

I am using the [given example](https://github.com/deanmcpherson/react-native-sortable-listview/blob/master/example.js) to demonstrate this bug. If you drag an item and throw it off screen then if will disappear and weirdly format the SortableListView. This...

Hi, Thanks for great library. I'm having issue when InteractionManager didn't fire callback because of some long running interaction that I don't control (using third party library). I'm wondering which...

This might be related to what is seen in #73. Steps to reproduce: 1. Drags and holds the active item beyond the end of the list. 2. This should activate...

Fixes bug causing gaps to occur when dragging beyond the end of the list #135

Sometimes gaps show up in the list when dragging as mentioned in https://github.com/deanmcpherson/react-native-sortable-listview/issues/2 I believe the fix for the gaps is to update `onPanRepsonderRelease()`'s last state assignment from ``` this.state.active...

If order element like: 4-3-1-2 And try to drag element 1 and past to position between 4 and 3 - the displaying doesn't work properly. See: https://drive.google.com/file/d/1RUCMVS6Yb9jaIHc-JlyABqG0xKZxK-iN/view?usp=sharing It happens not...