select chantier en cours

This commit is contained in:
trochas
2025-10-13 09:43:51 +02:00
parent d08bb6da70
commit 7b1ed13699
4 changed files with 75 additions and 45 deletions

View File

@@ -13,13 +13,14 @@ export default function RootLayout() {
const colorScheme = useColorScheme();
return (
<ThemeProvider value={colorScheme === 'dark' ? DarkTheme : DefaultTheme}>
<Stack>
<Stack.Screen name="selectChantier" options={{ headerShown: false }}/>
<Stack.Screen name="(tabs)" options={{ headerShown: false }} />
<Stack.Screen name="modal" options={{ presentation: 'modal', title: 'Modal' }} />
</Stack>
<StatusBar style="auto" />
</ThemeProvider>
);
}