react native中的欢迎页(解决首加载白屏)

参照网页:

http://blog.csdn.net/fengyuzhengfan/article/details/52712829

 

首先是在原生中写一些方法,然后通过react native中js去引用

'use strict';

import { NativeModules } from 'react-native';
module.exports = NativeModules.SplashScreen;

隐藏的方法:

componentDidMount() {
    SplashScreen.hide();
}

 

posted @ 2017-01-06 10:41  雪昀  阅读(3559)  评论(0编辑  收藏  举报