TopicTitle.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /**
  2. * @param:
  3. * title: 标题
  4. * summary: 标题下的灰字简介
  5. * background: 背景色
  6. * ifTubeShow: 左侧icon是否显示,默认不显示 boolean
  7. */
  8. import React, { Component } from "react";
  9. import {
  10. StyleSheet,
  11. Text,
  12. View,
  13. } from "react-native";
  14. import Dimensions from '../utils/dimensions'
  15. const styles = StyleSheet.create({
  16. wrapper: {
  17. width: Dimensions.width,
  18. height: 45,
  19. paddingLeft: 14,
  20. justifyContent: "center",
  21. flexDirection: 'column',
  22. backgroundColor: 'yellow'
  23. },
  24. line1: {
  25. flex: 1,
  26. alignItems: "center",
  27. flexDirection: 'row'
  28. },
  29. line2: {
  30. // 123
  31. flex: 1
  32. },
  33. tube: {
  34. width: 4,
  35. height: 14,
  36. marginRight: 6,
  37. backgroundColor: '#ffd101'
  38. },
  39. title: {
  40. color: '#373737',
  41. fontSize: 18
  42. },
  43. summary: {
  44. color: '#787878',
  45. fontSize: 16
  46. }
  47. })
  48. export default class TopicTitle extends Component {
  49. render() {
  50. let line2 = <View></View>;
  51. if (this.props.summary) {
  52. line2 = <View style={styles.line2}>
  53. <Text style={styles.summary}>{this.props.summary}</Text>
  54. </View>
  55. }
  56. let tube = <View></View>;
  57. if (this.props.ifTubeShow) {
  58. tube = 1
  59. }
  60. return (
  61. <View style={styles.wrapper}>
  62. <View style={styles.line1}>
  63. <View style={this.props.ifTubeShow ? styles.tube : null}></View>
  64. <Text style={styles.title}>{this.props.title}</Text>
  65. </View>
  66. {line2}
  67. </View>
  68. );
  69. }
  70. }