Initial commit: expo-popcore-app

This commit is contained in:
imeepos
2025-12-25 16:25:55 +08:00
commit 02d0c807cd
160 changed files with 39560 additions and 0 deletions

31
app/+not-found.tsx Normal file
View File

@@ -0,0 +1,31 @@
import { Link, Stack } from "expo-router";
import { StyleSheet, View } from "react-native";
import { useTranslation } from 'react-i18next';
export default function NotFoundScreen() {
const { t } = useTranslation();
return (
<>
<Stack.Screen options={{ title: t('notFound.title') }} />
<View style={styles.container}>
<Link href="/" style={styles.button}>
{t('notFound.goBack')}
</Link>
</View>
</>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#25292e",
justifyContent: "center",
alignItems: "center",
},
button: {
fontSize: 20,
textDecorationLine: "underline",
color: "#fff",
},
});