新建src/components/shared/NetworkError.js
文件
import * as React from 'react';
import { StyleSheet, View, Text, TouchableOpacity } from 'react-native';
import SimpleLineIcons from 'react-native-vector-icons/SimpleLineIcons';
import Colors from '../../constants/Colors';
const NetworkError = props => {
const { onReload } = props;
return (
<View style={styles.notice}>
<SimpleLineIcons name={'drawer'} size={160} color={'#ddd'} />
<Text style={styl...