import React, { Component } from "react" import { StyleSheet, Text, View, Image } from "react-native" import { unitWidth, unitHeight } from "../utils/AdapterUtil"; import AntDesign from "react-native-vector-icons/AntDesign" import FontAwesome from "react-native-vector-icons/FontAwesome" export default class GiftPay extends Component { render() { return ( 送个小礼物,敲开爱的大门,拉近彼此的距离 礼物:告白玫瑰 总价:¥6 请选择支付方式 支付宝 微信 ) } } const styles = StyleSheet.create({ container: { flex: 1, alignItems: "center" }, topInfo: { width: "100%", flex: 1, backgroundColor: "#fff", paddingLeft: unitWidth * 24, marginBottom: unitHeight * 20 }, giftInfo: { flexDirection: "row", marginTop: unitHeight * 30 }, giftImg: { width: unitWidth * 80, height: unitHeight * 80, marginLeft:unitWidth * 20, }, giftText: { marginLeft: unitWidth * 40 }, pay: { flex: 5, width: "100%", backgroundColor: "#fff" }, payTit: { flexDirection: "row", alignItems: "center", marginTop: unitHeight * 35, marginLeft: unitHeight * 24 }, payList: { width: "100%", height: unitHeight * 76, paddingLeft: unitWidth * 73, paddingRight: unitWidth * 73, marginTop: unitHeight * 40, flexDirection: "row", justifyContent: "space-between" }, payItem: { width: unitWidth * 250, height: unitHeight * 76, flexDirection: "row", borderColor: "#DEDEDE", borderWidth: 1, justifyContent: "center", alignItems: "center" } })