I get this error when I use React-Native 0.79.0. Do you have any suggestions to solve this problem?
import { Text } from "react-native";
import { SafeAreaView } from "react-native-safe-area-context";
export default function App()
{
return (
<SafeAreaView style={{ flex: 1, justifyContent: "center", alignItems: "center" }}>
<Text>Test</Text>
</SafeAreaView>
)
}
