init drawer
This commit is contained in:
13
ArtisanConnect/app/(tabs)/dashboard/_layout.jsx
Normal file
13
ArtisanConnect/app/(tabs)/dashboard/_layout.jsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { Drawer } from "expo-router/drawer";
|
||||
|
||||
export default function AccountDrawerLayout() {
|
||||
return (
|
||||
<Drawer>
|
||||
<Drawer.Screen name="account" options={{ title: "Konto" }} />
|
||||
<Drawer.Screen
|
||||
name="userNotices"
|
||||
options={{ title: "Moje ogłoszenia" }}
|
||||
/>
|
||||
</Drawer>
|
||||
);
|
||||
}
|
||||
4
ArtisanConnect/app/(tabs)/dashboard/account.jsx
Normal file
4
ArtisanConnect/app/(tabs)/dashboard/account.jsx
Normal file
@@ -0,0 +1,4 @@
|
||||
import { Text } from "@/components/ui/text";
|
||||
export default function User() {
|
||||
return <Text>Użytkownik</Text>;
|
||||
}
|
||||
4
ArtisanConnect/app/(tabs)/dashboard/userNotices.jsx
Normal file
4
ArtisanConnect/app/(tabs)/dashboard/userNotices.jsx
Normal file
@@ -0,0 +1,4 @@
|
||||
import { Text } from "@/components/ui/text";
|
||||
export default function UserNotices() {
|
||||
return <Text>Użytkownik</Text>;
|
||||
}
|
||||
Reference in New Issue
Block a user