init tab menu and first screen

This commit is contained in:
Patryk
2025-04-25 01:12:40 +02:00
parent 6da9c92bca
commit a05c1508e4
8 changed files with 83 additions and 6 deletions

View File

@@ -8,12 +8,15 @@ export default function RootLayout() {
return (
<QueryClientProvider client={queryClient}>
<GluestackUIProvider>
<Stack>
<Stack.Screen name="index" options={{ title: "Home" }} />
<Stack.Screen name="notices" options={{ title: "Ogłoszenia" }} />
<Stack.Screen name="wishlist" options={{ title: "Ulubione" }} />
<Stack
screenOptions={{
headerTintColor: "#1c1c1e",
headerBackTitleVisible: false,
headerBackTitle: "Wróć",
}}
>
<Stack.Screen name="(tabs)" options={{ headerShown: false }} />
</Stack>
{/* <Tabs/> */}
</GluestackUIProvider>
</QueryClientProvider>
);