import { View, Text, ScrollView, Pressable, StyleSheet } from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
import { router } from 'expo-router';
import Svg, { Path } from 'react-native-svg';
import NormalButton from '../global/normal_button';
const PreviousPageSvg = () => (
);
const BookingConfirmationPage = () => {
return (
{
if (router.canGoBack()) {
router.back();
} else {
router.replace('./');
}
}}
>
確認您的預約
日期
3月14
時間
15:15
充電地點
上環街市充電站
香港上環皇后大道中345號
方案
按每度電結算
度數: 50kWh
車輛
TESLA Model 3
收費概要
充電費用
HK$ 175
按每度電結算: 50 kWh
小計
HK$ 175
其他費用
HK$ 11
總計
HK$ 186
下一步
}
onPress={() => console.log('abc')}
extendedStyle={{ padding: 24 }}
/>
);
};
export default BookingConfirmationPage;
const styles = StyleSheet.create({
grayColor: {
color: '#888888'
},
greenColor: {
color: '#02677D'
}
});