···1-import { StatusBar } from "expo-status-bar";
2-import { Platform, StyleSheet } from "react-native";
3-4-import { View } from "react-native";
5-import { Text } from "../components/ui/text";
6-7-export default function ModalScreen() {
8- return (
9- <View className="flex-1 items-center justify-center dark:bg-neutral-800 bg-neutral-100">
10- <Text className="text-neutral-200 text-4xl">HELLO WORLD !!!!</Text>
11- <Text className="text-neutral-200 text-4xl">./app/modal.tsx</Text>
12-13- {/* Use a light status bar on iOS to account for the black space above the modal */}
14- <StatusBar style={Platform.OS === "ios" ? "light" : "auto"} />
15- </View>
16- );
17-}