如何在 React Native 中引用启动图片

How to reference a launch image in React Native

我想在我的 React 应用程序中使用 iOS 启动图像作为背景图像,但我不知道如何引用它。我尝试了一些类似于以下的事情:

<Image source={{uri: "LaunchImage"}} />

但是我收到了这个错误:

Module `LaunchImage` does not exist in the Haste module map`.

有什么想法吗?

尝试使用图片背景标签,例如

  <ImageBackground source={...} style={{width: '100%', height: '100%'}}>
    <Text>Inside</Text>
  </ImageBackground>

请在您的项目 src 文件夹中包含一个图像,请像这样使用 require() 调用图像路径

<Image source={{uri: require('../Images/LaunchImage.png')}} />

这里LaunchImage.png是文件名,'Images'是文件夹名