import React, { Component } from 'react'; import { StyleSheet, AppRegistry, View, Text } from 'react-native'; import Loading from './Loading'; import Toast from './Toast'; // import Popup from './Popup'; const originRegister = AppRegistry.registerComponent; AppRegistry.registerComponent = (appKey, component) => { return originRegister(appKey, function() { const OriginAppComponent = component(); return class extends Component { render() { return ( {/* 弹窗 */} {/* 提示 */} {/* //加载动画 */} ); } }; }); }; const styles = StyleSheet.create({ container: { flex: 1, position: 'relative' } });