import { View, Text, ScrollView, Pressable, StyleSheet } from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
import React from 'react';
import Svg, { Path, Rect } from 'react-native-svg';
import NormalButton from '../global/normal_button';
const TickLogoSvg = () => (
);
const BookingSuccessPage = () => {
return (
成功預約
時間日期
3月14 · 16:15
充電地點
上環街市充電站
香港上環皇后大道中345號
方案
按每度電結算
度數: 50kWh
車輛
TESLA Model 3
收費概要
充電費用
HK$ 175
按每度電結算: 50 kWh
小計
HK$ 175
其他費用
HK$ 11
總計
HK$ 186
付款資訊
訂單編號
CXZ-16336958
付款方式
預付銀包
電郵地址
mikechan123@gmail.com
返回預約
}
onPress={() => console.log('abc')}
extendedStyle={{ padding: 24 }}
/>
);
};
export default BookingSuccessPage;
const styles = StyleSheet.create({
grayColor: {
color: '#888888'
},
greenColor: {
color: '#02677D'
}
});