import React from "react"; import { View, Text, Image, TouchableOpacity, StyleSheet, ScrollView, } from "react-native"; export const PaymentSuccessScreen = () => { return ( 支付成功 73800FCFA 现代电话 17088752341 地址 河南省 货到仓库后,打电话联系您 查看订单 订单详情 1234567890 商品名称 ¥199 商品名称 ¥299 商品名称 ¥399 商品名称 ¥499 商品名称 ¥599 商品名称 ¥699 商品名称 ¥799 商品名称 ¥899 商品名称 ¥999 商品名称 ¥1099 ); }; const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: "#f1f5f9", }, header: { padding: 30, backgroundColor: "white", }, headerSuccess: { width: "100%", marginBottom: 5, }, headerSuccessImg: { width: 60, height: 60, alignSelf: "center", }, headerSuccessText: { fontSize: 20, color: "#000000", alignSelf: "center", marginTop: 10, }, headerSuccessTextTitle: { fontSize: 16, color: "#000000", alignSelf: "center", }, headerPriceText: { fontSize: 20, color: "#000000", alignSelf: "center", }, headerPriceTextTitle: { fontSize: 20, color: "#000000", alignSelf: "center", marginTop: 10, }, headerSuccessInfo: { width: "100%", backgroundColor: "#f0f6ff", borderRadius: 5, borderWidth: 1, borderColor: "#dafcff", marginTop: 10, padding: 10, }, headerSuccessInfoItem: { flexDirection: "row", fontSize: 16, color: "#0046bf", fontWeight: "600", alignItems: "center", }, headerSuccessInfoItem1: { flexDirection: "row", fontSize: 16, color: "#0046bf", fontWeight: "600", alignItems: "center", marginTop: 5, }, headerSuccessInfoItemText: { fontSize: 16, color: "#0046bf", width: "20%", fontWeight: "600", alignItems: "center", }, headerSuccessInfoItemText1: { fontSize: 16, color: "#0046bf", marginLeft: 10, fontWeight: "600", alignItems: "center", }, headerSuccessInfoItem2: { marginTop: 5, flexDirection: "row", }, button: { flex: 1, flexDirection: "row", justifyContent: "space-between", paddingLeft: 20, paddingRight: 20, marginTop: 20, }, buttonItem: { width: "40%", height: 40, backgroundColor: "#0030a7", borderRadius: 20, justifyContent: "center", alignItems: "center", }, buttonText: { fontSize: 16, color: "white", }, recommend: { padding: 20, }, footerItemText1: { fontSize: 16, color: "#000000", fontWeight: "600", marginBottom: 15, }, productContainer: { marginTop: 10, }, productRow: { flexDirection: "row", justifyContent: "space-between", marginBottom: 15, }, productItem: { width: "48%", backgroundColor: "white", borderRadius: 8, padding: 10, }, productImageContainer: { alignItems: "center", marginBottom: 8, width: "100%", }, productImage: { width: "100%", height: 120, backgroundColor: "#f1f5f9", borderRadius: 4, }, productName: { fontSize: 14, color: "#333", marginTop: 5, marginBottom: 5, }, productPrice: { fontSize: 16, color: "#E53935", fontWeight: "bold", }, });