import { StatusBar } from 'expo-status-bar'; import * as React from 'react'; import { Platform, StyleSheet } from 'react-native'; import EndScreenInfo from '../components/EndScreenInfo'; import { Text, View } from '../components/Themed'; export default function ModalScreen() { return ( Modal {/* Use a light status bar on iOS to account for the black space above the modal */} ); } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', }, title: { fontSize: 20, fontWeight: 'bold', }, separator: { marginVertical: 30, height: 1, width: '80%', }, });