import React, { Component } from "react"; import { StyleSheet, Text, View, Image } from "react-native"; export default class Comment extends Component { render() { return ( {this.props.title} 写评论 小幸运 2019-07-05 回复 爱上识字爱上文字的美,了解文字,幽默风趣的画风,动画识字展示让识字更有趣,跟喜欢。 卡通小熊 爱上识字爱上文字的美,了解文字,幽默风趣的画风,动画识字展示让识字更有趣,跟喜欢。 ); } } const styles = StyleSheet.create({ courseComment: { width: '100%', backgroundColor: '#fff', marginTop: 8, marginBottom: 60 }, padding: { paddingLeft: 20, paddingRight: 20, paddingTop: 10, paddingBottom: 10, }, title: { display: 'flex', flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', }, font: { fontSize: 24, color: 'black', fontWeight: 'bold', }, center: { display: 'flex', flexDirection: 'row', alignItems: 'center', justifyContent: 'center', }, button: { width: 98, height: 28, fontSize: 20, borderRadius: 28, color: 'black', backgroundColor: '#F0F1F5' }, headImg: { width: 40, height: 40, backgroundColor: "red", marginRight: 10, borderRadius: 40 }, iconSize: { width: 18, height: 18, marginRight: 10 }, reply: { width: 16, height: 15, marginRight: 5 }, courseFont: { color: '#373737', fontSize: 16 }, column: { display: 'flex', flexDirection: 'column', backgroundColor: '#F3F6FF' }, color: { color: '#518AD1' } });