PersonalInfoDialog.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. TouchableHighlight,
  22. DeviceEventEmitter
  23. } from "react-native";
  24. type Props = {};
  25. export default class PersonalInfoDialog extends Component<Props> {
  26. state = {
  27. modalVisible: false
  28. };
  29. setModalVisible(visible) {
  30. this.setState({ modalVisible: visible });
  31. }
  32. render() {
  33. return (
  34. <Modal
  35. animationType="fade"
  36. transparent={true}
  37. visible={this.state.modalVisible}
  38. onRequestClose={() => {
  39. this.setState({ modalVisible: false });
  40. }}
  41. >
  42. <View
  43. style={{
  44. flex: 1,
  45. width: "100%",
  46. height: "100%",
  47. alignItems: "center",
  48. justifyContent: "center",
  49. backgroundColor: "rgba(0, 0, 0, 0.3)",
  50. flexDirection: "row"
  51. }}
  52. >
  53. <View
  54. style={{
  55. flex: 111,
  56. alignItems: "center",
  57. justifyContent: "center",
  58. backgroundColor: "white"
  59. }}
  60. >
  61. <View
  62. style={{
  63. height: 150,
  64. width: "100%",
  65. backgroundColor: "white"
  66. }}
  67. >
  68. <View
  69. style={{
  70. flex: 1,
  71. alignItems: "center",
  72. justifyContent: "center"
  73. }}
  74. >
  75. <Text style={{ flex: 1, textAlignVertical: "center" }}>
  76. 修改昵称
  77. </Text>
  78. </View>
  79. <View
  80. style={{
  81. flex: 1,
  82. alignItems: "center",
  83. justifyContent: "center"
  84. }}
  85. >
  86. <TextInput
  87. placeholder="昵称"
  88. editable={true} //是否可编辑
  89. style={{
  90. width: "90%",
  91. height: "90%",
  92. borderColor: "black",
  93. borderWidth: 0,
  94. marginLeft: 5
  95. }}
  96. // onChangeText={this._onChangeText} //输入框改变触发的函数
  97. />
  98. </View>
  99. <View style={{ flex: 1, backgroundColor: "blue" }} />
  100. </View>
  101. </View>
  102. </View>
  103. </Modal>
  104. );
  105. }
  106. }