mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 12:33:26 +00:00
[ui] font added, movie item added, pages layout
This commit is contained in:
@@ -1,17 +1,18 @@
|
||||
import { Link, Stack } from 'expo-router';
|
||||
import { StyleSheet } from 'react-native';
|
||||
|
||||
import { Text, View } from '../components/Themed';
|
||||
import { StyleSheet, View } from 'react-native';
|
||||
import { BoldText, RegularText } from '../components/Styled';
|
||||
|
||||
export default function NotFoundScreen() {
|
||||
return (
|
||||
<>
|
||||
<Stack.Screen options={{ title: 'Oops!' }} />
|
||||
<View style={styles.container}>
|
||||
<Text style={styles.title}>This screen doesn't exist.</Text>
|
||||
<BoldText style={styles.title}>
|
||||
This screen doesn't exist.
|
||||
</BoldText>
|
||||
|
||||
<Link href="/" style={styles.link}>
|
||||
<Text style={styles.linkText}>Go to home screen!</Text>
|
||||
<RegularText style={styles.linkText}>Go to home screen!</RegularText>
|
||||
</Link>
|
||||
</View>
|
||||
</>
|
||||
|
Reference in New Issue
Block a user