diff options
| author | sergio <33748103+colado@users.noreply.github.com> | 2025-12-29 23:45:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-29 21:45:36 +0000 |
| commit | 30fa06feac15609fe99657e02d171e024e825322 (patch) | |
| tree | 0992aaa3a1fd3f82f38d9fe0f6d84aa990feedfc /apps/mobile/app/dashboard/_layout.tsx | |
| parent | 5537fe85ed65444359bfd066707760d6395fc7a4 (diff) | |
| download | karakeep-30fa06feac15609fe99657e02d171e024e825322.tar.zst | |
feat(mobile): create new list edit screen (#2310)
* feat(mobile): create new edit screen and path
* refactor(mobile): use correct import for back navigation
* refactor(mobile): remove set state for list type
* feat(mobile): handle loading state
* feat(mobile): add error handling
* feat(mobile): add local validation for empty list name
* refactor(mobile): use correct param name in edit path
* feat(mobile): handle all pending state cases
* refactor(mobile): remove unnecessary return
* refactor(mobile): move type validation to top of the file
* refactor(mobile): revert validation order
* refactor(mobile): clean up submit values
* fix(mobile): fix button views
Diffstat (limited to 'apps/mobile/app/dashboard/_layout.tsx')
| -rw-r--r-- | apps/mobile/app/dashboard/_layout.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/mobile/app/dashboard/_layout.tsx b/apps/mobile/app/dashboard/_layout.tsx index 260071f0..60fbc4fc 100644 --- a/apps/mobile/app/dashboard/_layout.tsx +++ b/apps/mobile/app/dashboard/_layout.tsx @@ -110,6 +110,15 @@ export default function Dashboard() { }} /> <Stack.Screen + name="lists/[slug]/edit" + options={{ + headerTitle: "Edit List", + headerBackTitle: "Back", + headerTransparent: true, + presentation: "modal", + }} + /> + <Stack.Screen name="archive" options={{ headerTitle: "", |
