在启动屏幕加载并启动应用后出现白屏的问题。
我已经尝试了一些代码,并使用js和native,但是不起作用
componentwillmount{
splashscreen.hide();
}
答案 0 :(得分:0)
如果是Android,请将android:windowDisablePreview放入您的styles.xml中。 希望对您有帮助。
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowDisablePreview">true</item>
<item name="colorPrimaryDark">@color/status_bar_color</item>
<!-- Customize your theme here. -->
</style>
请也尝试以下代码。
componentDidMount() {
setTimeout(() => {
SplashScreen.hide()
}, 300)
}