React-Native, Scroll View Not Scrolling

后端 未结 6 1347
悲&欢浪女
悲&欢浪女 2020-12-29 18:05

When I wrap content like this example below, it scrolls Perfectly..

return(
    
         TEST 
        

        
6条回答
  •  被撕碎了的回忆
    2020-12-29 19:02

    Another solution is to add a height property to the parent View container. This sometimes works well when calculating the height against the screen height.

    render () {
      const screenHeight = Dimensions.get('window').height
    
      return(
        
          
             TEST 
             TEST 
             TEST 
             TEST 
               ...    
          
        
      )
    }
    

提交回复
热议问题