import React, {Component} from 'react'; import {Modal, Text, TouchableHighlight, View, Alert} from 'react-native'; class RoomInput extends Component { state = { modalVisible: false, }; setModalVisible(visible) { this.setState({modalVisible: visible}); } render() { return ( { Alert.alert('Modal has been closed.'); }}> Hello World! { this.setModalVisible(!this.state.modalVisible); }}> Hide ModalW { this.setModalVisible(true); }}> Show Modal ); } }