import { View, Text, ScrollView, StyleSheet, Pressable, Image, Dimensions } from 'react-native'; import React from 'react'; 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'; import { widthPercentageToDP as wp, heightPercentageToDP as hp } from 'react-native-responsive-screen'; const TickLogoSvg = () => ( ); const RightArrowSvg = () => ( ); const { width: screenWidth, height: screenHeight } = Dimensions.get('window'); 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' } });