ListView grid in React Native

后端 未结 9 1975
长发绾君心
长发绾君心 2020-11-28 02:18

I\'m building a simple app in React Native that fetches listings from a remote JSON source and displays them on screen.

So far, using the excellent example here, I\

9条回答
  •  旧巷少年郎
    2020-11-28 02:57

    ScrollView with contentContainerStyle prop worked for me

            
                {user.posts.map((post, index) => (
                    
                ))}
            
    

提交回复
热议问题