123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- /**
- * 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,
- TextInput,
- Button,
- StatusBar,
- Modal,
- TouchableHighlight,
- DeviceEventEmitter
- } from "react-native";
- type Props = {};
- export default class ChosePhoto extends Component<Props> {
- state = {
- modalVisible: false
- };
- setModalVisible(visible) {
- this.setState({
- modalVisible: visible
- });
- }
- render() {
- return (
- <Modal
- animationType="slide"
- transparent={true}
- visible={this.state.modalVisible}
- onRequestClose={() => {
- this.setState({ modalVisible: false });
- }}
- >
- <View
- style={{
- flex: 1,
- flexDirection: "column"
- }}
- >
- <TouchableOpacity
- style={{
- flex: 2.5,
- backgroundColor: "rgba(0, 0, 0, 0.5)",
- width: "100%"
- }}
- activeOpacity={1}
- onPress={() => this.setState({ modalVisible: false })}
- >
- <View
- style={{
- flex: 2,
- width: "100%"
- }}
- />
- </TouchableOpacity>
- <View
- style={{
- flex: 1,
- width: "100%",
- flexDirection: "column",
- alignItems: "center",
- backgroundColor: "rgba(0, 0, 0, 0.5)",
- justifyContent: "center"
- }}
- >
- <View
- style={{
- flex: 2,
- width: "90%",
- backgroundColor: "white",
- borderRadius: 20,
- flexDirection: "column"
- }}
- >
- <TouchableOpacity
- style={{
- flex: 5,
- alignItems: "center",
- justifyContent: "center"
- }}
- activeOpacity={1}
- onPress={this.photograph.bind(this)}
- >
- <View
- style={{
- flex: 1,
- alignItems: "center",
- justifyContent: "center"
- }}
- >
- <Text
- style={{ fontSize: 22, color: "rgba(88, 168, 250, 1)" }}
- >
- 拍照
- </Text>
- </View>
- </TouchableOpacity>
- <View
- style={{
- flex: 0.1,
- backgroundColor: "rgba(246, 247, 248, 1)"
- }}
- />
- <TouchableOpacity
- style={{
- flex: 5,
- alignItems: "center",
- justifyContent: "center"
- }}
- activeOpacity={1}
- onPress={this.album_selection.bind(this)}
- >
- <View
- style={{
- flex: 1,
- alignItems: "center",
- justifyContent: "center"
- }}
- >
- <Text
- style={{ fontSize: 22, color: "rgba(88, 168, 250, 1)" }}
- >
- 从相册选择
- </Text>
- </View>
- </TouchableOpacity>
- </View>
- <View
- style={{
- flex: 0.1,
- width: "100%"
- }}
- />
- <TouchableOpacity
- style={{
- flex: 1,
- width: "90%",
- alignItems: "center",
- justifyContent: "center",
- borderRadius: 20,
- backgroundColor: "white"
- }}
- activeOpacity={1}
- onPress={() => {
- this.setState({ modalVisible: false });
- }}
- >
- <View
- style={{
- flex: 1,
- alignItems: "center",
- justifyContent: "center",
- borderRadius: 20,
- backgroundColor: "white"
- }}
- >
- <Text
- style={{
- // fontWeight: "bold",
- fontSize: 22,
- color: "rgba(88, 168, 250, 1)"
- }}
- >
- 取消
- </Text>
- </View>
- </TouchableOpacity>
- <View
- style={{
- flex: 0.1,
- width: "100%"
- }}
- />
- </View>
- </View>
- </Modal>
- );
- }
- photograph() {
- alert("拍照");
- }
- album_selection() {
- alert("相册选择");
- }
- }
|