SchoolAge.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. *
  5. * @format
  6. * @flow
  7. */
  8. import React, { Component } from "react";
  9. import {
  10. Platform,
  11. StyleSheet,
  12. Text,
  13. View,
  14. Image,
  15. TouchableOpacity,
  16. ImageBackground,
  17. Button,
  18. DeviceEventEmitter
  19. } from "react-native";
  20. import AndroidUtil from "../../util/AndroidUtil";
  21. import BasePage from "../BasePage";
  22. const instructions = Platform.select({
  23. ios: "Press Cmd+R to reload,\n" + "Cmd+D or shake for dev menu",
  24. android:
  25. "Double tap R on your keyboard to reload,\n" +
  26. "Shake or press menu button for dev menu"
  27. });
  28. type Props = {};
  29. export default class SchoolAge extends BasePage {
  30. render() {
  31. return (
  32. <ImageBackground
  33. source={{
  34. uri:
  35. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg"
  36. }}
  37. style={{
  38. flex: 1,
  39. width: "100%",
  40. height: "100%"
  41. }}
  42. >
  43. <Text style={styles.title_text}>请选择孩子所在的学龄段</Text>
  44. <View
  45. style={{
  46. flex: 1,
  47. flexDirection: "column",
  48. justifyContent: "center",
  49. alignItems: "stretch"
  50. }}
  51. >
  52. <View
  53. style={{
  54. flex: 1,
  55. flexDirection: "row"
  56. }}
  57. >
  58. <View style={{ flex: 1 }} />
  59. <TouchableOpacity
  60. activeOpacity={1}
  61. style={{
  62. flex: 3,
  63. width: 300,
  64. height: 150
  65. }}
  66. onPress={() => this.toNextPage("MainActivity")}
  67. >
  68. <Image
  69. source={{
  70. uri:
  71. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556275628062&di=ee191e8dccb7132ad39f2f11b0fb1161&imgtype=0&src=http%3A%2F%2Fc61.cnki.net%2FCJFD%2Fbig%2FXQYJ%2FXQYJ199609.jpg"
  72. }}
  73. style={{
  74. width: 300,
  75. height: 150,
  76. borderRadius: 50
  77. }}
  78. />
  79. </TouchableOpacity>
  80. <View style={{ flex: 1 }} />
  81. </View>
  82. <View
  83. style={{
  84. flex: 1,
  85. flexDirection: "row"
  86. }}
  87. >
  88. <View style={{ flex: 1 }} />
  89. <TouchableOpacity
  90. activeOpacity={1}
  91. style={{
  92. flex: 3,
  93. width: 300,
  94. height: 150
  95. }}
  96. onPress={() => this.toNextPage("MainPage")}
  97. >
  98. <Image
  99. source={{
  100. uri:
  101. "https://ss0.bdstatic.com/70cFuHSh_Q1YnxGkpoWK1HF6hhy/it/u=532481250,2026274152&fm=15&gp=0.jpg"
  102. }}
  103. style={{
  104. flex: 3,
  105. width: 300,
  106. height: 150,
  107. borderRadius: 50
  108. }}
  109. />
  110. </TouchableOpacity>
  111. <View style={{ flex: 1 }} />
  112. </View>
  113. <View
  114. style={{
  115. flex: 1,
  116. flexDirection: "row"
  117. }}
  118. >
  119. <View style={{ flex: 1 }} />
  120. <Image
  121. source={{
  122. uri:
  123. "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1295208965,3056573814&fm=26&gp=0.jpg"
  124. }}
  125. style={{
  126. flex: 3,
  127. width: 300,
  128. height: 150,
  129. borderRadius: 50
  130. }}
  131. />
  132. <View style={{ flex: 1 }} />
  133. </View>
  134. </View>
  135. </ImageBackground>
  136. );
  137. }
  138. }
  139. const styles = StyleSheet.create({
  140. title_text: {
  141. justifyContent: "center",
  142. alignItems: "center",
  143. color: "red",
  144. fontSize: 30,
  145. textAlign: "center",
  146. marginTop: 30,
  147. marginBottom: 50
  148. }
  149. });