aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app
diff options
context:
space:
mode:
authorsergio <33748103+colado@users.noreply.github.com>2025-12-30 11:07:22 +0200
committerGitHub <noreply@github.com>2025-12-30 09:07:22 +0000
commita43d375f55ff3523450001b4dbcf34808519dfb9 (patch)
treeb0177c80f3b4ebd33800d9f818d7abe9bd318014 /apps/mobile/app
parent9d6b1282b199550e8531fa227fce048632ca6f2d (diff)
downloadkarakeep-a43d375f55ff3523450001b4dbcf34808519dfb9.tar.zst
fix(mobile): mobile modal UI issues (#2320)
* fix(mobile): Make list type selector visible on Android * fix(mobile): Add native iOS overlay on Toast
Diffstat (limited to 'apps/mobile/app')
-rw-r--r--apps/mobile/app/dashboard/lists/new.tsx30
1 files changed, 16 insertions, 14 deletions
diff --git a/apps/mobile/app/dashboard/lists/new.tsx b/apps/mobile/app/dashboard/lists/new.tsx
index af51ed15..bada46f2 100644
--- a/apps/mobile/app/dashboard/lists/new.tsx
+++ b/apps/mobile/app/dashboard/lists/new.tsx
@@ -66,20 +66,22 @@ const NewListPage = () => {
<View className="gap-2">
<Text className="text-sm text-muted-foreground">List Type</Text>
<View className="flex flex-row gap-2">
- <Button
- variant={listType === "manual" ? "primary" : "secondary"}
- onPress={() => setListType("manual")}
- className="flex-1"
- >
- <Text>Manual</Text>
- </Button>
- <Button
- variant={listType === "smart" ? "primary" : "secondary"}
- onPress={() => setListType("smart")}
- className="flex-1"
- >
- <Text>Smart</Text>
- </Button>
+ <View className="flex-1">
+ <Button
+ variant={listType === "manual" ? "primary" : "secondary"}
+ onPress={() => setListType("manual")}
+ >
+ <Text>Manual</Text>
+ </Button>
+ </View>
+ <View className="flex-1">
+ <Button
+ variant={listType === "smart" ? "primary" : "secondary"}
+ onPress={() => setListType("smart")}
+ >
+ <Text>Smart</Text>
+ </Button>
+ </View>
</View>
</View>