import React from 'react'; import { StyleSheet, ScrollView } from 'react-native'; import { router } from 'expo-router'; import { ThemedView } from '@/components/themed-view'; import { ThemedText } from '@/components/themed-text'; import { useThemeColor } from '@/hooks/use-theme-color'; import { IconSymbol } from '@/components/ui/icon-symbol'; export default function RechargeScreen() { const backgroundColor = useThemeColor({}, 'background'); return ( 充值页面 此页面正在开发中... ); } const styles = StyleSheet.create({ container: { flex: 1, }, content: { flex: 1, justifyContent: 'center', alignItems: 'center', padding: 20, }, });