Comment.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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 src="" 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 src="" style={styles.iconSize} />
  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. },
  51. padding: {
  52. paddingLeft: 20,
  53. paddingRight: 20,
  54. paddingTop: 10,
  55. paddingBottom: 10,
  56. },
  57. title: {
  58. display: 'flex',
  59. flexDirection: 'row',
  60. justifyContent: 'space-between',
  61. alignItems: 'center',
  62. },
  63. font: {
  64. fontSize: 24,
  65. color: 'black',
  66. fontWeight: 'bold',
  67. },
  68. center: {
  69. display: 'flex',
  70. flexDirection: 'row',
  71. alignItems: 'center',
  72. justifyContent: 'center',
  73. },
  74. button: {
  75. width: 98,
  76. height: 28,
  77. fontSize: 20,
  78. borderRadius: 28,
  79. color: 'black',
  80. backgroundColor: '#F0F1F5'
  81. },
  82. headImg: {
  83. width: 40,
  84. height: 40,
  85. backgroundColor: "red",
  86. marginRight: 10,
  87. borderRadius: 40
  88. },
  89. iconSize: {
  90. width: 20,
  91. height: 20,
  92. backgroundColor: "red",
  93. marginRight: 10
  94. },
  95. courseFont: {
  96. color: '#373737',
  97. fontSize: 16
  98. },
  99. column: {
  100. display: 'flex',
  101. flexDirection: 'column',
  102. backgroundColor: '#F3F6FF'
  103. },
  104. color: {
  105. color: '#518AD1'
  106. }
  107. });