Files
ArtisanConnectFrontend/ArtisanConnect/app/(tabs)/dashboard/_layout.jsx
2025-05-08 22:12:33 +02:00

25 lines
629 B
JavaScript

import { Drawer } from "expo-router/drawer";
export default function AccountDrawerLayout() {
return (
<Drawer
screenOptions={{
drawerActiveTintColor: "#1c1c1e",
drawerInactiveTintColor: "#8e8e8f",
drawerActiveBackgroundColor: "#f0f0f0",
drawerItemStyle: {
borderRadius: 8,
// backgroundColor: "transparent",
},
headerTintColor: "#1c1c1e",
}}
>
<Drawer.Screen name="account" options={{ title: "Konto" }} />
<Drawer.Screen
name="userNotices"
options={{ title: "Moje ogłoszenia" }}
/>
</Drawer>
);
}