|
@@ -31,39 +31,66 @@ export default class CourseTitle extends Component<Props> {
|
|
|
backgroundColor: "withe",
|
|
|
width: this.props.width,
|
|
|
height: this.props.height,
|
|
|
- flexDirection: "row"
|
|
|
+ flexDirection: "column"
|
|
|
}}
|
|
|
>
|
|
|
- <View style={{ flex: 1 }}>
|
|
|
- <TouchableOpacity
|
|
|
- //返回
|
|
|
- activeOpacity={1}
|
|
|
- onPress={this.props.backPress}
|
|
|
- >
|
|
|
- <Image style={{ width: 20, height: 20, backgroundColor: "blue" }} />
|
|
|
- </TouchableOpacity>
|
|
|
- </View>
|
|
|
- <View style={{ flex: 5 }}>
|
|
|
- <Text
|
|
|
+ <View
|
|
|
+ style={{
|
|
|
+ flex: 1
|
|
|
+ }}
|
|
|
+ />
|
|
|
+ <View
|
|
|
+ style={{
|
|
|
+ flex: 1,
|
|
|
+ flexDirection: "row"
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ <View
|
|
|
style={{
|
|
|
- width: "100%",
|
|
|
- fontSize: 18,
|
|
|
- fontWeight: "bold",
|
|
|
- textAlign: "center"
|
|
|
+ flex: 1,
|
|
|
+ alignItems: "center",
|
|
|
+ justifyContent: "center"
|
|
|
}}
|
|
|
>
|
|
|
- {this.props.title}
|
|
|
- </Text>
|
|
|
- </View>
|
|
|
- <View style={{ flex: 1 }}>
|
|
|
- <TouchableOpacity
|
|
|
- //分享
|
|
|
- activeOpacity={1}
|
|
|
- onPress={this.props.sharedpress}
|
|
|
- >
|
|
|
- <Image style={{ width: 20, height: 20, backgroundColor: "blue" }} />
|
|
|
- </TouchableOpacity>
|
|
|
+ <TouchableOpacity
|
|
|
+ //返回
|
|
|
+ activeOpacity={1}
|
|
|
+ onPress={this.props.backPress}
|
|
|
+ >
|
|
|
+ <Image
|
|
|
+ style={{ width: 20, height: 20, backgroundColor: "blue" }}
|
|
|
+ />
|
|
|
+ </TouchableOpacity>
|
|
|
+ </View>
|
|
|
+ <View style={{ flex: 5 }}>
|
|
|
+ <Text
|
|
|
+ style={{
|
|
|
+ width: "100%",
|
|
|
+ fontSize: 18,
|
|
|
+ fontWeight: "bold",
|
|
|
+ textAlign: "center"
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ {this.props.title}
|
|
|
+ </Text>
|
|
|
+ </View>
|
|
|
+ <View style={{ flex: 1 }}>
|
|
|
+ <TouchableOpacity
|
|
|
+ //分享
|
|
|
+ activeOpacity={1}
|
|
|
+ onPress={this.props.sharedpress}
|
|
|
+ >
|
|
|
+ <Image
|
|
|
+ style={{ width: 20, height: 20, backgroundColor: "blue" }}
|
|
|
+ />
|
|
|
+ </TouchableOpacity>
|
|
|
+ </View>
|
|
|
</View>
|
|
|
+ <View
|
|
|
+ style={{
|
|
|
+ flex: 1
|
|
|
+ }}
|
|
|
+ />
|
|
|
</View>
|
|
|
);
|
|
|
}
|
|
@@ -71,14 +98,12 @@ export default class CourseTitle extends Component<Props> {
|
|
|
/**
|
|
|
|
|
|
使用方法
|
|
|
- <CourseTitle
|
|
|
- uri="https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1295208965,3056573814&fm=26&gp=0.jpg"
|
|
|
- width={400}
|
|
|
- height={150}
|
|
|
- username="卡通笨笨熊"
|
|
|
- flowerNumber="123234"
|
|
|
- onPress={() => this.toNextPage("MainActivity")}
|
|
|
+ <CourseTitle
|
|
|
+ width={150}
|
|
|
+ height={50}
|
|
|
+ title="学前"
|
|
|
+ backPress={() => this.goBack()}
|
|
|
+ sharedpress={() => alert("点击分享")}
|
|
|
/>
|
|
|
|
|
|
-
|
|
|
*/
|