react-native利用第三方插件修改启动页
1、安装插件npm i react-native-splash-screen
react-native link react-native-splash-screen
2、修改ios启动页,添加启动图片
Images.xcassets中添加LaunchImage
修改AppDelegate.m
#import "RNSplashScreen.h"
application里面添加 [RNSplashScreen show]
3、修改android启动页
https://www.cnblogs.com/amanda-man/p/8385122.html