import React from 'react'; import { createNativeStackNavigator } from '@react-navigation/native-stack'; import { RootStackParamList } from './types'; import { AppNavigator } from './AppNavigator'; import { LoginScreen } from '../screens/auth/LoginScreen'; import { SignupScreen } from '../screens/auth/SignupScreen'; import { ForgotPasswordScreen } from '../screens/auth/ForgotPasswordScreen'; import { useTheme } from '../theme'; import { COLORS } from '../theme'; const Stack = createNativeStackNavigator(); export function RootNavigator() { const { theme } = useTheme(); return ( {/* Tabs are always the base — marketplace is public */} {/* Auth screens slide up as modals from any tab */} ); }