Header.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. import React, { Component } from "react";
  2. import {
  3. Platform,
  4. StyleSheet,
  5. Text,
  6. View,
  7. Image,
  8. TouchableOpacity,
  9. ImageBackground,
  10. Button,
  11. Dimensions,
  12. DeviceEventEmitter
  13. } from "react-native";
  14. /** 因没有图,所以Image先用颜色代替,有图可替换 */
  15. const instructions = Platform.select({
  16. ios: "Press Cmd+R to reload,\n" + "Cmd+D or shake for dev menu",
  17. android:
  18. "Double tap R on your keyboard to reload,\n" +
  19. "Shake or press menu button for dev menu"
  20. });
  21. type Props = {};
  22. var width = Dimensions.get("window").width;
  23. var height = Dimensions.get("window").height;
  24. export default class Header extends Component<Props> {
  25. render() {
  26. return (
  27. <TouchableOpacity activeOpacity={1} onPress={this.props.onPress}>
  28. <View
  29. style={{
  30. width: this.props.width,
  31. height: this.props.height,
  32. flexDirection: "column"
  33. }}
  34. >
  35. <View style={{ flex: 1 }} />
  36. <View
  37. style={{
  38. flex: 1,
  39. alignItems: "center",
  40. justifyContent: "center",
  41. flexDirection: "row"
  42. }}
  43. >
  44. <Image
  45. source={{
  46. uri: this.props.uri
  47. }}
  48. style={{
  49. width: 60,
  50. height: 60,
  51. borderRadius: 50
  52. }}
  53. />
  54. <View
  55. style={{
  56. flex: 0.1
  57. }}
  58. />
  59. <View
  60. style={{
  61. flex: 10,
  62. width: "100%",
  63. height: "100%",
  64. flexDirection: "column"
  65. }}
  66. >
  67. <Text
  68. style={{
  69. width: "100%",
  70. height: "50%",
  71. fontSize: 18,
  72. fontWeight: "bold",
  73. textAlign: "left",
  74. textAlignVertical: "bottom"
  75. }}
  76. >
  77. {this.props.username}
  78. </Text>
  79. <View
  80. style={{
  81. flex: 2,
  82. flexDirection: "row"
  83. }}
  84. >
  85. <Image
  86. // source={{
  87. // uri: this.props.uri
  88. // }}
  89. style={{
  90. alignItems: "center",
  91. justifyContent: "center",
  92. width: 20,
  93. height: 20,
  94. backgroundColor: "blue"
  95. }}
  96. />
  97. <Text
  98. style={{
  99. flex: 1,
  100. textAlignVertical: "center",
  101. marginLeft: 2
  102. }}
  103. >
  104. {this.props.flowerNumber}
  105. </Text>
  106. </View>
  107. </View>
  108. </View>
  109. <View style={{ flex: 1 }} />
  110. </View>
  111. </TouchableOpacity>
  112. );
  113. }
  114. }
  115. /**
  116. 使用方法
  117. <Header
  118. uri="https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1295208965,3056573814&amp;fm=26&amp;gp=0.jpg"
  119. width={400}
  120. height={150}
  121. username="卡通笨笨熊"
  122. flowerNumber="123234"
  123. onPress={() => this.toNextPage("MainActivity")}
  124. />
  125. */