From bdb3a61a4e2c628f8b881a1bdba3781cd5506004 Mon Sep 17 00:00:00 2001 From: Gogo-Eng <“progressgogochinda@gmail.com”> Date: Tue, 30 Jun 2026 09:30:31 +0100 Subject: [PATCH] Restructure mobile app navigation to use feature-based modular architecture --- mobile/app/_layout.tsx | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 mobile/app/_layout.tsx diff --git a/mobile/app/_layout.tsx b/mobile/app/_layout.tsx new file mode 100644 index 0000000..c5fb4ec --- /dev/null +++ b/mobile/app/_layout.tsx @@ -0,0 +1,30 @@ +import { Stack } from 'expo-router'; +import { ThemeProvider } from '../features/theme/ThemeProvider'; +import { AuthProvider } from '../features/auth/context/AuthContext'; + +export default function RootLayout() { + return ( + + + + {/* Auth Screens */} + + + {/* Main App */} + + + {/* Modals */} + + + + + ); +} \ No newline at end of file