用Real Splash Screen替换React Native Splash Screen图像

时间:2018-12-09 08:27:11

标签: javascript react-native splash-screen

如何用一些自定义的React-Native页面替换React-Native初始图像。目前,我正在使用图像作为初始屏幕。我希望启动画面是动态的,并从服务器加载/显示一些数据。这是我app.json的配置,我现在正在使用。

{
  "expo": {
  "name": "SplashDemo",
  "slug": "SplashDemo",
  "privacy": "public",
  "sdkVersion": "31.0.0",
  "platforms": [
      "ios",
      "android"
  ],
    "version": "1.0.0",
    "orientation": "portrait",
    "icon": "./assets/images/icon.png",
    "splash": {
    "image": "./assets/images/splash.png",
    "resizeMode": "contain",
    "backgroundColor": "#ffffff"
},
"updates": {
  "fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
    "**/*"
],
  "ios": {
    "supportsTablet": true
  },
  "android": {
    "package": "com.sample.splash",
    "versionCode": 1
  }
 }
}

主要关注给出的启动配置

 "splash": {
   "image": "./assets/images/splash.png",
   "resizeMode": "contain",
   "backgroundColor": "#ffffff"
}

我们可以以某种方式将其替换为react native页面吗?如果是,那么如何?

0 个答案:

没有答案