我想在我的React应用程序中使用iOS启动图像作为背景图像,但是我不知道如何引用它。我已经尝试了一些类似于以下内容的东西:
<Image source={{uri: "LaunchImage"}} />
但是我遇到了这个错误:
Haste模块映射中不存在模块“ LaunchImage”。
有什么想法吗?
答案 0 :(得分:1)
尝试使用图像背景标签,例如
<ImageBackground source={...} style={{width: '100%', height: '100%'}}>
<Text>Inside</Text>
</ImageBackground>
答案 1 :(得分:1)
请在您的项目src文件夹中添加图片,并使用require()这样调用图片路径
<Image source={{uri: require('../Images/LaunchImage.png')}} />
此处LaunchImage.png是其文件名,“图像”是文件夹名