refactor create/editTask into one upsertTask page, and remove all remaining console.log and debugging helpers

This commit is contained in:
Fhj0607
2026-04-30 11:34:26 +02:00
parent 152a91718a
commit 2f483b8ef9
7 changed files with 102 additions and 587 deletions

View File

@@ -3,9 +3,7 @@ import { Stack } from "expo-router";
export default function TaskLayout() {
return (
<Stack>
<Stack.Screen name="tasks" options={{ title: 'Tasks' }} />
<Stack.Screen name="createTask" options={{ title: "Create Task" }} />
<Stack.Screen name="editTask" options={{ title: "Edit Task" }} />
<Stack.Screen name="upsertTask" options={{ title: "Create Task" }} />
<Stack.Screen name="viewDetailsTask" options={{ title: "Task Details" }} />
</Stack>
);