Explorar el Código

Merge branch 'master' of http://gogs.efunbox.cn/Rorschach/efunbox-mobile-8

Rorschach hace 5 años
padre
commit
ff0ef51622
Se han modificado 2 ficheros con 107 adiciones y 35 borrados
  1. 60 35
      pages/components/CourseTitle.js
  2. 47 0
      pages/components/SchedulePage.js

+ 60 - 35
pages/components/CourseTitle.js

@@ -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&amp;fm=26&amp;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("点击分享")}
         />
 
-
  */

+ 47 - 0
pages/components/SchedulePage.js

@@ -0,0 +1,47 @@
+/**
+ * Sample React Native App
+ * https://github.com/facebook/react-native
+ *
+ * @format
+ * @flow
+ */
+
+import React, { Component } from "react";
+import {
+  Platform,
+  StyleSheet,
+  Text,
+  View,
+  Image,
+  TouchableOpacity,
+  ImageBackground,
+  Button,
+  DeviceEventEmitter
+} from "react-native";
+import AndroidUtil from "../../util/AndroidUtil";
+import BasePage from "../BasePage";
+import CourseTitle from "./CourseTitle";
+const instructions = Platform.select({
+  ios: "Press Cmd+R to reload,\n" + "Cmd+D or shake for dev menu",
+  android:
+    "Double tap R on your keyboard to reload,\n" +
+    "Shake or press menu button for dev menu"
+});
+
+type Props = {};
+export default class SchedulePage extends BasePage {
+  render() {
+    return (
+      <View style={{ backgroundColor: "#F3F3F3" }}>
+        <CourseTitle
+          width={this.getWindowWidth()}
+          height={50}
+          title="第12周 爱上幼儿园"
+          // backPress={() => this.goBack()}
+          backPress={() => alert("点击返回")}
+          sharedpress={() => alert("点击分享")}
+        />
+      </View>
+    );
+  }
+}