import * as React from 'react'; import { Modal, StyleSheet, Text, View } from 'react-native'; import Button from '../components/Button'; import { Layout } from '../constants'; interface State { modalVisible: boolean; animationType?: 'none' | 'slide' | 'fade'; } export default class ModalScreen extends React.Component { static navigationOptions = { title: 'Modal', }; readonly state: State = { modalVisible: false, animationType: 'none', }; render() { return ( { this.setState({ modalVisible: false }); alert('Modal has been closed.'); }}> { this.setState({ modalVisible: false }); alert('Modal has been closed.'); }}> Hello World!