snibib
snibib
I alse met on IOS,I found that panResponder of row was replaced by listview's every time cannot slide.
`I` am not good at English,so please don't mind.I found a solution which may can give some help.I found when the row cannot slide,the responder was replaced by listview via...
@KishPatel1996 Sorry to reply so late.I found it didn't work so nice.It just seldom happens.
componentWillMount() { this._panResponder = PanResponder.create({ onMoveShouldSetPanResponder:(e,gs) => this.handleOnMoveShouldSetPanResponder(e,gs), onPanResponderMove:(e,gs) => this.handleOnPanResponderMove(e,gs), onPanResponderRelease:(e,gs) => this.handleOnPanResponderRelease(e,gs), onPanResponderTerminate:(e,gs) => this.handleOnPanResponderTermination(e,gs), onShouldBlockNativeResponder:_ => false }); } when you stopped moving,onPanResponderRelase happened.but if you was...