const LoadingView = () => (
  <View style={styles.loading}>
    <ActivityIndicator size="large" color="#3e9ce9" />
    <Text style={styles.loadingText}>数据加载中...</Text>
  </View>