import React, { useMemo } from "react"; import { StatusBar } from "expo-status-bar"; import { ActivityIndicator, View, StyleSheet } from "react-native"; import { NavigationContainer } from "@react-navigation/native"; import { createNativeStackNavigator } from "@react-navigation/native-stack"; import { AuthProvider, useAuth } from "./src/auth/AuthContext"; import { ThemeProvider, useTheme } from "./src/context/ThemeContext"; import type { Colors } from "./src/theme"; import { spacing } from "./src/theme"; import RoleSelectScreen from "./src/screens/auth/RoleSelectScreen"; import AdminLoginScreen from "./src/screens/auth/AdminLoginScreen"; import CabineLoginScreen from "./src/screens/auth/CabineLoginScreen"; import DeliveryLoginScreen from "./src/screens/auth/DeliveryLoginScreen"; import AdminNavigator from "./src/navigation/AdminNavigator"; import CabineNavigator from "./src/navigation/CabineNavigator"; import DeliveryNavigator from "./src/navigation/DeliveryNavigator"; import type { AuthStackParamList } from "./src/navigation/types"; const Stack = createNativeStackNavigator(); function AuthStack() { const { colors } = useTheme(); return ( ); } function RootNavigator() { const { isAuthenticated, isLoading, role } = useAuth(); const { colors } = useTheme(); if (isLoading) { return ( ); } if (isAuthenticated) { switch (role) { case "admin": return ; case "cabine": return ; case "livreur": return ; } } return ; } export default function App() { return ( ); } function DynamicStatusBar() { const { isDark } = useTheme(); return ; }