import { View, Text, ScrollView, StyleSheet, Image } from 'react-native'; import { SafeAreaView } from 'react-native-safe-area-context'; import Svg, { Path } from 'react-native-svg'; import RippleEffectBatteryIcon from '../global/rippleEffectBatteryIcon'; import LoadingDots from '../global/loadingDots'; import NormalButton from '../global/normal_button'; const LightingLogoSvg = () => ( ); const BatteryIconSvg = () => ( ); const TemperatureIconSvg = () => ( ); const ChargingPage = () => { 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 { console.log('完成充電'); }} title={ 完成充電 } /> ); }; export default ChargingPage; const styles = StyleSheet.create({ grayColor: { color: '#888888' }, greenColor: { color: '#02677D' }, text: { fontWeight: 300, color: '#000000' } });