🔀 Merging to get the listView from React TP

This commit is contained in:
Alexis Leboeuf
2025-10-13 09:58:16 +02:00
4 changed files with 75 additions and 44 deletions

View File

@@ -13,6 +13,7 @@ export default function RootLayout() {
const colorScheme = useColorScheme();
return (
<ThemeProvider value={colorScheme === 'dark' ? DarkTheme : DefaultTheme}>
<Stack>
<Stack.Screen name="(tabs)" options={{ headerShown: false }} />
@@ -21,5 +22,6 @@ export default function RootLayout() {
</Stack>
<StatusBar style="auto" />
</ThemeProvider>
);
}