React-Native, Scroll View Not Scrolling

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

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

return(
    
         TEST 
        

        
6条回答
  •  天涯浪人
    2020-12-29 18:41

    It's a typo:
    Your closing ScrollView tag is: rather than . You also need to add a style to the View container, here's an example of what it should look like:

    return(
      
        
           TEST 
           TEST 
           TEST 
           TEST 
          ...    
        
      
    );
    

提交回复
热议问题