29 lines
786 B
TypeScript
29 lines
786 B
TypeScript
import { Link, Stack } from 'expo-router';
|
|
import { StyleSheet } from 'react-native';
|
|
import { ThemedText, ThemedView } from '@/components/theme/Theme';
|
|
import TextButton from '@/components/theme/buttons/TextButton';
|
|
|
|
const NotFoundScreen = () => {
|
|
return (
|
|
<>
|
|
<Stack.Screen options={{ title: 'Page not found' }} />
|
|
<ThemedView style={styles.container}>
|
|
<ThemedText type='title'>This screen doesn't exist.</ThemedText>
|
|
<Link href='/'>
|
|
<TextButton width={200} height={45} text='Go to home screen' fontSize={24} />
|
|
</Link>
|
|
</ThemedView>
|
|
</>
|
|
);
|
|
};
|
|
export default NotFoundScreen;
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
padding: 20,
|
|
},
|
|
});
|