MainActivity.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. Button,
  15. DeviceEventEmitter
  16. } from "react-native";
  17. import AndroidUtil from "../util/AndroidUtil";
  18. import BasePage from "./BasePage";
  19. const instructions = Platform.select({
  20. ios: "Press Cmd+R to reload,\n" + "Cmd+D or shake for dev menu",
  21. android:
  22. "Double tap R on your keyboard to reload,\n" +
  23. "Shake or press menu button for dev menu"
  24. });
  25. type Props = {};
  26. export default class MainActivity extends BasePage {
  27. render() {
  28. return (
  29. <View style={styles.container}>
  30. <Text style={styles.welcome}>Welcome to React Native!</Text>
  31. <Text style={styles.instructions}>To get started, edit App.js</Text>
  32. <Button title="toast" onPress={() => this.Toast("Main")} />
  33. <Text style={styles.instructions}>To get started, edit App.js</Text>
  34. <Button
  35. title="toWebActivity"
  36. onPress={() => this.toWebPage("这里写json......")}
  37. />
  38. <Text style={styles.instructions}>To get started, edit App.js</Text>
  39. <Button title="testJssssss" onPress={() => this.testJssss()} />
  40. <Text style={styles.instructions}>To get started, edit App.js</Text>
  41. <Button title="back" onPress={() => this.backSchoolAge()} />
  42. </View>
  43. );
  44. }
  45. }
  46. const styles = StyleSheet.create({
  47. container: {
  48. flex: 1,
  49. justifyContent: "center",
  50. alignItems: "center",
  51. backgroundColor: "#F5FCFF"
  52. },
  53. welcome: {
  54. fontSize: 20,
  55. textAlign: "center",
  56. margin: 10
  57. },
  58. instructions: {
  59. textAlign: "center",
  60. color: "#333333",
  61. marginBottom: 5
  62. }
  63. });