美文网首页
解决RN打开白屏问题

解决RN打开白屏问题

作者: 小棋子js | 来源:发表于2019-11-15 09:45 被阅读0次

解决启动白屏react-native-splash-screen使用记录

首先下载插件 npm install react-native-splash-screen --save
然后自动安装插件 react-native link react-native-splash-screen
在安装过程如果报错的话
报错:Error: Cannot find module 'asap/raw'
原因找不到模块缺少Module
重新 npm i 然后在执行命令
https://www.jianshu.com/p/4540ac17dfd4

https://blog.csdn.net/v619498372/article/details/79984452

import SplashScreen from 'react-native-splash-screen'

export default class WelcomePage extends Component {

componentDidMount() {
  SplashScreen.hide();
}

}

相关文章

网友评论

      本文标题:解决RN打开白屏问题

      本文链接:https://www.haomeiwen.com/subject/gcxytctx.html