简体   繁体   English

如何在启动画面 React Native 之前移除白屏?

[英]How to remove white screen before Splash screen React Native?

I added a splash screen when booting the app using https://www.npmjs.com/package/react-native-splash-screen#examples .我在使用https://www.npmjs.com/package/react-native-splash-screen#examples启动应用程序时添加了启动画面。

But before launching the splash screen, I can see a white screen.但在启动启动画面之前,我可以看到一个白屏。 I can change that screen's colour using styles.xml but cannot remove it.我可以使用 styles.xml 更改该屏幕的颜色,但无法将其删除。 Can anyone help me to remove that I am new to react-native?谁能帮我删除我是 react-native 的新手?

Go to android/app/src/main/res/values/styles.xml Go 到 android/app/src/main/res/values/styles.xml

Disable the app's preview:禁用应用的预览:

<resources>
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="android:windowDisablePreview">true</item>
    </style>
</resources>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM