From afb0914db81e0ea4255c277a289c61b616ff0cf8 Mon Sep 17 00:00:00 2001 From: Seven Date: Mon, 9 Mar 2026 07:29:14 +0700 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=A0=87=E7=AD=BE=E9=A1=B5?= =?UTF-8?q?=E5=B8=83=E5=B1=80=EF=BC=8C=E5=88=9B=E5=BB=BA=E4=B8=BB=E9=A1=B5?= =?UTF-8?q?=E5=92=8C=E5=85=B3=E4=BA=8E=E9=A1=B5=E7=BB=84=E4=BB=B6=EF=BC=8C?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=B8=8D=E5=86=8D=E4=BD=BF=E7=94=A8=E7=9A=84?= =?UTF-8?q?=E7=B4=A2=E5=BC=95=E5=92=8C=E6=A8=A1=E6=80=81=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/(tabs)/_layout.tsx | 10 ++++++++++ app/(tabs)/about.tsx | 5 +++++ app/(tabs)/index.tsx | 5 +++++ app/_layout.tsx | 6 +----- app/index.tsx | 5 ----- app/modal.tsx | 5 ----- 6 files changed, 21 insertions(+), 15 deletions(-) create mode 100644 app/(tabs)/_layout.tsx create mode 100644 app/(tabs)/about.tsx create mode 100644 app/(tabs)/index.tsx delete mode 100644 app/index.tsx delete mode 100644 app/modal.tsx diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx new file mode 100644 index 0000000..c993589 --- /dev/null +++ b/app/(tabs)/_layout.tsx @@ -0,0 +1,10 @@ +import { Tabs } from 'expo-router'; + +export default function TabLayout() { + return ( + + + + + ); +} \ No newline at end of file diff --git a/app/(tabs)/about.tsx b/app/(tabs)/about.tsx new file mode 100644 index 0000000..2bf1212 --- /dev/null +++ b/app/(tabs)/about.tsx @@ -0,0 +1,5 @@ +import { Text } from "react-native"; + +export default function AboutRoute() { + return About Route; +} \ No newline at end of file diff --git a/app/(tabs)/index.tsx b/app/(tabs)/index.tsx new file mode 100644 index 0000000..092bcfa --- /dev/null +++ b/app/(tabs)/index.tsx @@ -0,0 +1,5 @@ +import { Text } from "react-native"; + +export default function IndexRoute() { + return Index Route; +} \ No newline at end of file diff --git a/app/_layout.tsx b/app/_layout.tsx index 8606eb6..9095be4 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -16,11 +16,7 @@ export default function RootLayout() { - - + diff --git a/app/index.tsx b/app/index.tsx deleted file mode 100644 index c02fcc9..0000000 --- a/app/index.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { HomeScreen } from "@/features/home/screens/home-screen"; - -export default function IndexRoute() { - return ; -} diff --git a/app/modal.tsx b/app/modal.tsx deleted file mode 100644 index a53c143..0000000 --- a/app/modal.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { ModalScreen } from "@/features/system/screens/modal-screen"; - -export default function ModalRoute() { - return ; -}