import { View, Text, ScrollView, Pressable, StyleSheet } from 'react-native'; import { SafeAreaView } from 'react-native-safe-area-context'; import { router } from 'expo-router'; import NormalButton from '../global/normal_button'; import { CheckMarkLogoSvg, DirectionLogoSvg, PreviousPageBlackSvg } from '../global/SVG'; import { ChargingStationTabView } from '../global/chargingStationTabView'; import ChooseCarForChargingRow from '../global/chooseCarForChargingRow'; const dummyDataChooseCarForCharging = [ { imageUrl: require('../../assets/car1.png'), VehicleName: 'TESLA - Model 3', isDefault: true }, { VehicleName: 'TESLA - Model Y', isDefault: false }, { imageUrl: require('../../assets/car1.png'), VehicleName: 'TESLA - Model X', isDefault: false }, { VehicleName: 'TESLA - Model 3', isDefault: false } ]; const MakingBookingPageComponent = () => ( { if (router.canGoBack()) { router.back(); } else { router.replace('./'); } }} > 上環街市充電站 香港上環皇后大道中345號 路線 } onPress={() => console.log('路線')} extendedStyle={{ backgroundColor: '#E3F2F8', borderRadius: 61, paddingHorizontal: 20, paddingVertical: 8 }} /> Walk-In 400米 選擇充電車輛 {dummyDataChooseCarForCharging.map((car, index) => ( ))} console.log('選擇充電方案')} > 選擇充電方案 console.log('選擇日期時間')} > 選擇日期時間 console.log('選擇充電座')} > 選擇充電座 收費 $20 每15分鐘 $3.5 每度電 充電站資訊 ); export default MakingBookingPageComponent; const styles = StyleSheet.create({ grayColor: { color: '#888888' }, topLeftTriangle: { width: 0, height: 0, borderLeftWidth: 50, borderBottomWidth: 50, borderLeftColor: '#02677D', borderBottomColor: 'transparent', position: 'absolute', top: 0, left: 0 }, text: { fontWeight: 300, color: '#000000' } });