GradeSelectionModal.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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. TextInput,
  18. Button,
  19. StatusBar,
  20. Modal,
  21. ScrollView,
  22. TouchableHighlight,
  23. DeviceEventEmitter,
  24. findNodeHandle,
  25. UIManager
  26. } from "react-native";
  27. import CitysData from "../../data/citys.json";
  28. type Props = {};
  29. export default class GradeSelectionModal extends Component<Props> {
  30. state = {
  31. modalVisible: false,
  32. grade_data: [
  33. "一年级",
  34. "二年级",
  35. "三年级",
  36. "四年级",
  37. "五年级",
  38. "六年级",
  39. "七年级",
  40. "八年级",
  41. "九年级"
  42. ]
  43. };
  44. render() {
  45. return (
  46. <Modal
  47. // animationType="fade"
  48. animationType="none"
  49. transparent={true}
  50. visible={this.state.modalVisible}
  51. onRequestClose={() => {
  52. this.setState({ modalVisible: false });
  53. }}
  54. >
  55. <View
  56. style={{
  57. flex: 1,
  58. justifyContent: "center",
  59. alignItems: "center"
  60. }}
  61. >
  62. <View
  63. style={{
  64. width: "92%",
  65. backgroundColor: "white",
  66. height: "80%",
  67. borderRadius: 20,
  68. flexDirection: "column",
  69. overflow: "hidden",
  70. alignItems: "center",
  71. justifyContent: "center"
  72. }}
  73. >
  74. <View
  75. style={{
  76. flex: 1,
  77. justifyContent: "center",
  78. alignItems: "center"
  79. }}
  80. >
  81. <Text
  82. style={{
  83. textAlign: "center",
  84. fontSize: 22,
  85. color: "rgba(58, 58, 58, 1)"
  86. }}
  87. >
  88. 我所在的年级
  89. </Text>
  90. </View>
  91. <View
  92. style={{
  93. flex: 3,
  94. width: "100%",
  95. marginTop: 5
  96. }}
  97. >
  98. {this.centerView()}
  99. </View>
  100. <View style={{ flex: 2, width: "90%" }}>
  101. <ImageBackground
  102. source={require("../images/userInfo/logoutbg1.png")}
  103. style={{
  104. flex: 1,
  105. width: "100%",
  106. alignItems: "center",
  107. justifyContent: "center",
  108. height: "100%"
  109. }}
  110. imageStyle={{
  111. resizeMode: "contain"
  112. }}
  113. >
  114. <TouchableOpacity
  115. style={{
  116. width: "100%",
  117. alignItems: "center",
  118. height: "40%",
  119. justifyContent: "center"
  120. }}
  121. activeOpacity={1}
  122. onPress={() => this.commit()}
  123. >
  124. <Text
  125. style={{
  126. fontSize: 30,
  127. color: "white",
  128. width: "100%",
  129. textAlign: "center"
  130. }}
  131. >
  132. 确定
  133. </Text>
  134. </TouchableOpacity>
  135. </ImageBackground>
  136. </View>
  137. <View style={{ flex: 0.5 }} />
  138. </View>
  139. </View>
  140. </Modal>
  141. );
  142. }
  143. centerView() {
  144. return (
  145. <View
  146. style={{
  147. flex: 1,
  148. flexDirection: "column",
  149. alignItems: "center"
  150. }}
  151. >
  152. <View
  153. style={{
  154. flex: 1,
  155. justifyContent: "space-between",
  156. width: "90%",
  157. flexDirection: "row"
  158. }}
  159. >
  160. <TouchableOpacity
  161. onPress={() => this.clickGrade()}
  162. style={styles.item}
  163. >
  164. <Text style={styles.item_text}>一年级</Text>
  165. </TouchableOpacity>
  166. <View style={styles.item}>
  167. <Text style={styles.item_text}>二年级</Text>
  168. </View>
  169. <View style={styles.item}>
  170. <Text style={styles.item_text}>三年级</Text>
  171. </View>
  172. </View>
  173. <View
  174. style={{
  175. flex: 1,
  176. justifyContent: "space-between",
  177. width: "90%",
  178. flexDirection: "row"
  179. }}
  180. >
  181. <View style={styles.item}>
  182. <Text style={styles.item_text}>四年级</Text>
  183. </View>
  184. <View style={styles.item}>
  185. <Text style={styles.item_text}>五年级</Text>
  186. </View>
  187. <View style={styles.item}>
  188. <Text style={styles.item_text}>六年级</Text>
  189. </View>
  190. </View>
  191. <View
  192. style={{
  193. flex: 1,
  194. justifyContent: "space-between",
  195. width: "90%",
  196. flexDirection: "row"
  197. }}
  198. >
  199. <View style={styles.item}>
  200. <Text style={styles.item_text}>七年级</Text>
  201. </View>
  202. <View style={styles.item}>
  203. <Text style={styles.item_text}>八年级</Text>
  204. </View>
  205. <View style={styles.item}>
  206. <Text style={styles.item_text}>九年级</Text>
  207. </View>
  208. </View>
  209. </View>
  210. );
  211. }
  212. commit() {
  213. alert("确定");
  214. }
  215. setModalVisible(visible) {
  216. this.setState({
  217. modalVisible: visible
  218. });
  219. }
  220. clickGrade() {}
  221. }
  222. const styles = StyleSheet.create({
  223. item: {
  224. width: 127,
  225. height: 53,
  226. backgroundColor: "rgba(61, 192, 252, 0.15)",
  227. borderRadius: 30
  228. },
  229. item_text: {
  230. flex: 1,
  231. textAlign: "center",
  232. textAlignVertical: "center",
  233. color: "rgba(58, 58, 58, 1)",
  234. fontSize: 18
  235. }
  236. });