import { View, Text, ScrollView, StyleSheet, Pressable } from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
import Svg, { Path, Rect } from 'react-native-svg';
import NormalButton from './global/normal_button';
import SlideInImage from './global/slideInImage';
const TickLogoSvg = () => (
);
const RightArrowSvg = () => (
);
// **This is 付款概要 page**
const PaymentSummaryPage = () => {
return (
付款概要
console.log('優惠券')}>
優惠券
$20 迎新優惠券
收費概要
充電費用
HK$ 175
按每度電結算: 50 kWh
小計
HK$ 175
其他費用
HK$ 11
總計
HK$ 186
前往付款
}
onPress={() => console.log('前往付款')}
extendedStyle={{ padding: 24 }}
/>
);
};
export default PaymentSummaryPage;
const styles = StyleSheet.create({
grayColor: {
color: '#888888'
},
greenColor: {
color: '#02677D'
}
});