import React, { Component } from "react" import { StyleSheet, Text, View, Image } from "react-native" import { unitWidth, unitHeight } from "../utils/AdapterUtil"; export default class SendGift extends Component { render() { return ( 王先生 12-03 13:15 告白玫瑰 ¥6 ) } } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: "center", alignItems: "center", backgroundColor: "#fff", paddingTop:unitHeight * 48, }, giftList: { width: "100%", height: "100%", paddingLeft: unitWidth * 24, paddingRight: unitWidth * 24 }, itemOnce: { width: "100%", }, itemOnceTit: { width: "100%", flexDirection: "row", justifyContent: "space-between", alignItems: "center" }, itemOnceUser: { flexDirection: "row", alignItems: "center" }, userImg: { width: unitWidth * 80, height: unitHeight * 80, marginRight: unitWidth * 28 }, itemGiftInfo: { width: unitWidth * 594, height: unitHeight * 130, backgroundColor: "#F9F9F9", alignSelf: "flex-end", flexDirection: "row", justifyContent: "space-between", alignItems: "center", paddingRight: unitWidth * 22 }, giftImg: { width: unitWidth * 80, height: unitHeight * 80, marginLeft: unitWidth * 24, marginRight: unitWidth * 20, } })