如何在 React Native 中的平面列表中显示图像
How to Show a Image on a flatlist in react native
我正在用 React 构建一个应用程序 native.I 想在平面框中显示一些图像。如何在 React Native 中在平面列表中显示图像
Here is my code
来自 React Native docs:
Note that for network and data images, you will need to manually specify the dimensions of your image!
像这样:
<Image
style={{width: 50, height: 50}}
source={{uri: 'http://sslweb.solidstatelogic.com.s3.amazonaws.com/user-icon.png'}}
/>
我正在用 React 构建一个应用程序 native.I 想在平面框中显示一些图像。如何在 React Native 中在平面列表中显示图像 Here is my code
来自 React Native docs:
Note that for network and data images, you will need to manually specify the dimensions of your image!
像这样:
<Image
style={{width: 50, height: 50}}
source={{uri: 'http://sslweb.solidstatelogic.com.s3.amazonaws.com/user-icon.png'}}
/>