Comment.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. import React, { Component } from "react";
  2. import {
  3. StyleSheet,
  4. Text,
  5. View,
  6. Image
  7. } from "react-native";
  8. export default class Comment extends Component {
  9. render() {
  10. return (
  11. <View style={styles.courseComment}>
  12. <View style={[styles.padding, styles.title]}>
  13. <Text style={styles.font}>{this.props.title}</Text>
  14. <View style={[ styles.button, styles.center ]}>
  15. <Image source={require('../images/courseDetails/comment.png')} style={styles.iconSize} />
  16. <Text>写评论</Text>
  17. </View>
  18. </View>
  19. <View style={[ styles.padding ]}>
  20. <View style={[ styles.title ]}>
  21. <View style={[ styles.center ]}>
  22. <Image style={[styles.headImg ]}></Image>
  23. <View>
  24. <Text style={{ fontSize: 16, color: '#373737' }}>小幸运</Text>
  25. <Text style={{ fontSize: 14, color: '#7F7F7F' } }>2019-07-05</Text>
  26. </View>
  27. </View>
  28. <View style={[ styles.center ]}>
  29. <Image source={require('../images/courseDetails/reply.png')} style={styles.reply} />
  30. <Text>回复</Text>
  31. </View>
  32. </View>
  33. <View style={ styles.padding }>
  34. <Text>爱上识字爱上文字的美,了解文字,幽默风趣的画风,动画识字展示让识字更有趣,跟喜欢。</Text>
  35. </View>
  36. <View style={[ styles.padding, styles.column ]}>
  37. <Text style={ styles.color }>卡通小熊</Text>
  38. <Text>爱上识字爱上文字的美,了解文字,幽默风趣的画风,动画识字展示让识字更有趣,跟喜欢。</Text>
  39. </View>
  40. </View>
  41. </View>
  42. );
  43. }
  44. }
  45. const styles = StyleSheet.create({
  46. courseComment: {
  47. width: '100%',
  48. backgroundColor: '#fff',
  49. marginTop: 8,
  50. marginBottom: 60
  51. },
  52. padding: {
  53. paddingLeft: 20,
  54. paddingRight: 20,
  55. paddingTop: 10,
  56. paddingBottom: 10,
  57. },
  58. title: {
  59. display: 'flex',
  60. flexDirection: 'row',
  61. justifyContent: 'space-between',
  62. alignItems: 'center',
  63. },
  64. font: {
  65. fontSize: 24,
  66. color: 'black',
  67. fontWeight: 'bold',
  68. },
  69. center: {
  70. display: 'flex',
  71. flexDirection: 'row',
  72. alignItems: 'center',
  73. justifyContent: 'center',
  74. },
  75. button: {
  76. width: 98,
  77. height: 28,
  78. fontSize: 20,
  79. borderRadius: 28,
  80. color: 'black',
  81. backgroundColor: '#F0F1F5'
  82. },
  83. headImg: {
  84. width: 40,
  85. height: 40,
  86. backgroundColor: "red",
  87. marginRight: 10,
  88. borderRadius: 40
  89. },
  90. iconSize: {
  91. width: 18,
  92. height: 18,
  93. marginRight: 10
  94. },
  95. reply: {
  96. width: 16,
  97. height: 15,
  98. marginRight: 5
  99. },
  100. courseFont: {
  101. color: '#373737',
  102. fontSize: 16
  103. },
  104. column: {
  105. display: 'flex',
  106. flexDirection: 'column',
  107. backgroundColor: '#F3F6FF'
  108. },
  109. color: {
  110. color: '#518AD1'
  111. }
  112. });