import { faArrowLeft, faEllipsis, faStar, faThumbsUp, } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-native-fontawesome"; import { useNavigation } from "@react-navigation/native"; import React from "react"; import { Dimensions, Image, StyleSheet, Text, TouchableOpacity, View, } from "react-native"; import coming from "../.././../assets/comingsoon.png"; const height = Dimensions.get("window").height; const width = Dimensions.get("window").width; const CustomerReview = () => { const navigation = useNavigation(); return ( {/* Content */} {/* */} {/* Content */} {/* Content */} Rating {/* Content */} 4.5 /5 {/* right */} {/* Content */} {/* Content */} {/* Content */} {/* Content */} {/* Content */} M*** Pagka deliver na pagka deliver ginamit ko agad hehe.. ganda niya.. thank you seller! kaso d working ung remote control?? {/* Content */} {/* Content */} reply ); }; const styles = StyleSheet.create({ container: { backgroundColor: "#ffff", width: "100%", height: "100%", }, wrapper: { height: "100%", width: "100%", // padding: 15, }, header: { alignItems: "center", width: "100%", top: 0, paddingLeft: 15, flexDirection: "row", borderColor: "#ddd", paddingBottom: 15, borderBottomWidth: 1, }, headerText: { fontSize: 16, fontWeight: "600", marginLeft: 25, }, wrapCon: { borderColor: "#ddd", paddingVertical: 15, borderBottomWidth: 1, borderTopWidth: 1, backgroundColor: "#f8f8f8", }, rateCon: {}, rateText: { fontSize: 21, fontWeight: "600", }, rateText2: { fontSize: 15, paddingTop: 6, paddingRight: 10, }, rateWrapper: { alignItems: "center", width: "100%", top: 0, paddingLeft: 15, flexDirection: "row", borderColor: "#ddd", paddingBottom: 15, borderBottomWidth: 1, }, rateWrapperLeft: {}, rateWrapperLeftWrap: { flexDirection: "row", }, rateWrapperRight: {}, rateWrapperRightWrap: {}, commentCon: {}, commentText: { color: "#3b3b3b", marginTop: 15, }, commentUser: { color: "#3b3b3b", marginLeft: 15, }, commentConWrap: {}, commentConCard: { backgroundColor: "#fff", }, commentConCardWrap: { flexDirection: "row", padding: 10, }, starRateWrap: { flexDirection: "row", padding: 10, }, ellipse: { // position: "absolute", // top: 0, marginTop: 15, }, like: { marginVertical: 15 }, commentConCardLeft: { width: "88%", justifyContent: "center", alignItems: "center", }, commentConCardLeftWrap: { alignItems: "center", width: "100%", top: 0, // paddingLeft: 15, flexDirection: "column", borderColor: "#ddd", // paddingBottom: 15, // borderBottomWidth: 1, }, commentConCardLeftWrapRow: { alignItems: "center", width: "100%", top: 0, // paddingLeft: 15, flexDirection: "row", // justifyContent: "space-between", borderColor: "#ddd", // paddingBottom: 15, // borderBottomWidth: 1, }, commentConCardRight: { // justifyContent: "center", alignItems: "center", bottom: 10, }, commentConCardRightWrap: { // height: "100%", flexDirection: "column", justifyContent: "center", alignItems: "center", }, }); export default CustomerReview;