React Native Nested ScrollView Can`t Scroll on Android Device

后端 未结 5 1316
走了就别回头了
走了就别回头了 2020-12-16 03:06

I have the problem about nested scrollview on Android Device, but IOS OK

How to fix the issue about B scrollview cant scrolling ?

          


        
5条回答
  •  独厮守ぢ
    2020-12-16 03:37

    In ScrollView, set style of contentContainerStyle to flex: 1:

      // A ScrollView
        Hello 
        Hello 
        Hello 
        Hello 
               
             // B ScrollView
                Hello         
                Hello         
                Hello          
                Hello      
             
        
    
    

    It worked for me on android. Let me know if it works for you please.

提交回复
热议问题