React Native nested ScrollView locking up

后端 未结 5 1463
野趣味
野趣味 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:37

    Wrapping scrollable content of nested ScrollView with fixed this one for me on android:

    
      ...
      
        
          { /* your scrollable content goes here */ }
        
      
    
    

提交回复
热议问题