import { View, Text, ScrollView, StyleSheet, Image } from 'react-native'; import { SafeAreaView } from 'react-native-safe-area-context'; import RippleEffectBatteryIcon from '../global/rippleEffectBatteryIcon'; import LoadingDots from '../global/loadingDots'; import NormalButton from '../global/normal_button'; import { router } from 'expo-router'; import { BatteryIconSvg, LightingLogoSvg, TemperatureIconSvg } from '../global/SVG'; const ChargingPageComponent = () => { return ( 現正充電中: TESLA Model 3 充電中 55% 尚餘時間 ~48 mins {/* Top */} 充電功率 22.1kW 實際功率 30.0kW 溫度 36°c {/* bottom container */} 充電歷時 ~12mins 預計充電費用 按每度電結算: 50 kWh HK$ 175 其他資訊 開始時間 16:33:04 充電座 A104 { router.push('/paymentSummaryPage') }} title={ 完成充電 } /> { router.push('/chargingPenaltyPage') }} title={ OTHER PAGE DEMO } /> ); }; export default ChargingPageComponent; const styles = StyleSheet.create({ grayColor: { color: '#888888' }, greenColor: { color: '#02677D' }, text: { fontWeight: 300, color: '#000000' } });