ios 有系统自带 splash,不建议使用
npm i react-native-splash-screen
Android studio MainActivity.java 添加
SplashScreen.show(this,true); // here
if( Build.VERSION.SDK_INT != 26 ){ //排除android 8.0.0bug 竖屏和透明背景不能同时bug
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}
设置名称为 launch_screen 的 xml 和 图片即可,参考老项目
新版不需要手动link
