25 lines
629 B
JavaScript
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>
|
|
);
|
|
}
|