CourseTitle.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 CourseTitle extends Component<Props> {
  25. render() {
  26. return (
  27. <View
  28. style={{
  29. backgroundColor: "withe",
  30. width: this.props.width,
  31. height: this.props.height,
  32. flexDirection: "row"
  33. }}
  34. >
  35. <View style={{ flex: 1 }}>
  36. <TouchableOpacity
  37. //返回
  38. activeOpacity={1}
  39. onPress={this.props.backPress}
  40. >
  41. <Image style={{ width: 20, height: 20, backgroundColor: "blue" }} />
  42. </TouchableOpacity>
  43. </View>
  44. <View style={{ flex: 5 }}>
  45. <Text
  46. style={{
  47. width: "100%",
  48. fontSize: 18,
  49. fontWeight: "bold",
  50. textAlign: "center"
  51. }}
  52. >
  53. {this.props.title}
  54. </Text>
  55. </View>
  56. <View style={{ flex: 1 }}>
  57. <TouchableOpacity
  58. //分享
  59. activeOpacity={1}
  60. onPress={this.props.sharedpress}
  61. >
  62. <Image style={{ width: 20, height: 20, backgroundColor: "blue" }} />
  63. </TouchableOpacity>
  64. </View>
  65. </View>
  66. );
  67. }
  68. }
  69. /**
  70. 使用方法
  71. <CourseTitle
  72. uri="https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1295208965,3056573814&amp;fm=26&amp;gp=0.jpg"
  73. width={400}
  74. height={150}
  75. username="卡通笨笨熊"
  76. flowerNumber="123234"
  77. onPress={() => this.toNextPage("MainActivity")}
  78. />
  79. */