You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
625 B
22 lines
625 B
import { Stack, usePathname, useRouter } from "expo-router";
|
|
import { Button, Text, View } from "react-native";
|
|
import { SafeAreaView } from "react-native-safe-area-context";
|
|
|
|
export default function NotFoundScreen() {
|
|
const pathname = usePathname();
|
|
const router = useRouter();
|
|
|
|
return (
|
|
<SafeAreaView>
|
|
<Stack.Screen options={{ title: "Oops!" }} />
|
|
<View>
|
|
<Text>
|
|
This screen {pathname} doesn't exist: {pathname}
|
|
</Text>
|
|
<Button title="Retour Home" onPress={() => router.replace("/")} />
|
|
<Text>Go to home screen!</Text>
|
|
</View>
|
|
</SafeAreaView>
|
|
);
|
|
}
|