/** * 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 { state = { modalVisible: false }; setModalVisible(visible) { this.setState({ modalVisible: visible }); } render() { return ( { this.setState({ modalVisible: false }); }} > this.setState({ modalVisible: false })} > 拍照 从相册选择 { this.setState({ modalVisible: false }); }} > 取消 ); } photograph() { alert("拍照"); } album_selection() { alert("相册选择"); } }