diff options
Diffstat (limited to 'src/screens/NotFound.tsx')
-rw-r--r-- | src/screens/NotFound.tsx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/screens/NotFound.tsx b/src/screens/NotFound.tsx new file mode 100644 index 000000000..afb91b402 --- /dev/null +++ b/src/screens/NotFound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { + SafeAreaView, + ScrollView, + StatusBar, + Text, + Button, + useColorScheme, + View, +} from 'react-native' +import type {RootStackScreenProps} from '../routes/types' + +export const NotFound = ({navigation}: RootStackScreenProps<'NotFound'>) => { + const isDarkMode = useColorScheme() === 'dark' + + return ( + <SafeAreaView> + <StatusBar barStyle={isDarkMode ? 'light-content' : 'dark-content'} /> + <ScrollView contentInsetAdjustmentBehavior="automatic"> + <View> + <Text>Page not found</Text> + <Button title="Home" onPress={() => navigation.navigate('Primary')} /> + </View> + </ScrollView> + </SafeAreaView> + ) +} |