可能导致图片无法在iOS模拟器中显示的内容?
我试图在带有react-native的应用版本中显示jpg图像。 不幸的是,这是我在模拟器中看到的:
我已将这些图片添加到Images.xcassets
文件夹下,并在xcode中运行build
。
我也尝试将Apple图像移出Fruit子文件夹。
应包含图片的代码如下所示:
<Image
source={require('image!Apple')}
style={styles.galleryItem}
/>
样式定义如下:
var styles = StyleSheet.create({
galleryItem: {
width: 50,
height: 50,
marginLeft: 10,
marginTop: 3,
marginRight: 10,
borderWidth: 1,
borderColor: '#000'
}
});
系统