app now correctly handles the hierarchy subject -> assignment -> task. Implemented consistent styling and coloring on all three levels and correctly configured expo routing

This commit is contained in:
Fhj0607
2026-04-30 11:23:41 +02:00
parent 67c625f42c
commit 6f5158ff41
7 changed files with 265 additions and 601 deletions

View File

@@ -3,9 +3,7 @@ import { Stack } from "expo-router";
export default function AssignmentLayout() {
return (
<Stack>
<Stack.Screen name="assignments" options={{ title: 'Assignments' }} />
<Stack.Screen name="createAssignment" options={{ title: "Create Assignment" }} />
<Stack.Screen name="editAssignment" options={{ title: "Edit Assignment" }} />
<Stack.Screen name="upsertAssignment" options={{ title: 'Create/Edit Assignment' }} />
<Stack.Screen name="viewDetailsAssignment" options={{ title: "Assignment Details" }} />
</Stack>
);