React-Native, Scroll View Not Scrolling

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

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

return(
    
         TEST 
        

        
6条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-29 18:52

    As @Evan Siroky has answered above it's working well I'm just adding on thing for a auto height in case you don't want to reserve the space

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

提交回复
热议问题