See this example here.
import React, { Component } from 'react';
import { Text, View, StyleSheet, Button, Modal } from 'react-native';
import { Constants } from 'expo';
export default class App extends Component {
  state = {
    modalVisible: false,
  };
  
  _handleButtonPress = () =>...