Tim Gibadullin
Tim Gibadullin
I can't reproduce your bug. Could you make changes in the Horizontal example to reproduce it?
@srameshr https://github.com/gitim/react-native-sortable-list/blob/example/examples/Horizontal/index.js
it is progress yet, need to debug commented part of _findRowUnderActiveRow, still have not enough time for this
yes, just provide new order through props
What is `Animated.TouchableOpacity`? There is no `TouchableOpacity` in `Animated` from react-native. I've tried ``` js {data.text} ``` and re-ordering works fine. If you want to use `TouchableWithoutFeedback` instead of `TouchableOpacity`...
It seems that the explanation is clear and issue is solved. If you still have questions please reopen it.
Hi, could you provide a gist that reproduce the bug, because it looks like you have some specific case?
For performance improving you should add `shoudlComponentUpdate` into your component, that is rendered in `renderRow` function.
Also there is another way to improve performance, we can switch back to LayoutAnimation while animating rows swapping, I switch from it to js-animation, because it was buggy on android.
Seems, you didn't understand me. You should implement `shouldComponentUpdate` inside MyRow component: ```js } /> ```