React Native nested ScrollView locking up

后端 未结 5 1456
野趣味
野趣味 2021-01-30 17:03

I\'m trying to nest ScrollViews in React Native; a horizontal scroll with nested vertical scrolls.

Here\'s an example:

var Test = React.createClass({
           


        
5条回答
  •  一生所求
    2021-01-30 17:31

    In your panresponder for the inner one, try setting this:

    onPanResponderTerminationRequest: () => false
    

提交回复
热议问题