···11-import { StatusBar } from "expo-status-bar";
22-import { Platform, StyleSheet } from "react-native";
33-44-import { View } from "react-native";
55-import { Text } from "../components/ui/text";
66-77-export default function ModalScreen() {
88- return (
99- <View className="flex-1 items-center justify-center dark:bg-neutral-800 bg-neutral-100">
1010- <Text className="text-neutral-200 text-4xl">HELLO WORLD !!!!</Text>
1111- <Text className="text-neutral-200 text-4xl">./app/modal.tsx</Text>
1212-1313- {/* Use a light status bar on iOS to account for the black space above the modal */}
1414- <StatusBar style={Platform.OS === "ios" ? "light" : "auto"} />
1515- </View>
1616- );
1717-}