我正在用react native构建应用程序。我想在平面框中显示一些图像。如何在react native中显示在平面列表上的图像 Here is my code
答案 0 :(得分:0)
从React Native docs:
请注意,对于网络和数据图像,您将需要手动指定图像的尺寸!
赞:
<Image
style={{width: 50, height: 50}}
source={{uri: 'http://sslweb.solidstatelogic.com.s3.amazonaws.com/user-icon.png'}}
/>