Mobile Dev
All checks were successful
Build and Push Docker Images / build-backend (push) Successful in 2m50s
Build and Push Docker Images / build-frontend (push) Successful in 1m13s

This commit is contained in:
2026-02-21 21:21:39 +01:00
parent 30d761f899
commit 409db82368
16 changed files with 2663 additions and 689 deletions

View File

@@ -31,16 +31,23 @@ export default function TabLayout() {
}}>
<Tabs.Screen
name="index"
options={{
title: 'Dashboard',
tabBarIcon: ({ color }) => <IconSymbol size={24} name="house.fill" color={color} />,
}}
/>
<Tabs.Screen
name="tasks"
options={{
title: 'Aufgaben',
tabBarIcon: ({ color }) => <IconSymbol size={24} name="checklist" color={color} />,
}}
/>
<Tabs.Screen
name="explore"
name="projects"
options={{
title: 'Konto',
tabBarIcon: ({ color }) => <IconSymbol size={24} name="person.crop.circle.fill" color={color} />,
title: 'Projekte',
tabBarIcon: ({ color }) => <IconSymbol size={24} name="folder.fill" color={color} />,
}}
/>
<Tabs.Screen
@@ -50,6 +57,13 @@ export default function TabLayout() {
tabBarIcon: ({ color }) => <IconSymbol size={24} name="clock.fill" color={color} />,
}}
/>
<Tabs.Screen
name="explore"
options={{
title: 'Mehr',
tabBarIcon: ({ color }) => <IconSymbol size={24} name="ellipsis.circle.fill" color={color} />,
}}
/>
</Tabs>
);
}