import { Link } from "expo-router"; import { StyleSheet, Text, View } from "react-native"; export function ModalScreen() { return ( Modal Route This screen is presented with modal behavior on native. Back to home ); } const styles = StyleSheet.create({ container: { flex: 1, alignItems: "center", justifyContent: "center", padding: 20, gap: 8, }, title: { fontSize: 24, fontWeight: "700", }, subtitle: { fontSize: 14, color: "#5c6169", textAlign: "center", }, link: { marginTop: 8, fontSize: 16, fontWeight: "600", }, });