aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-08-24 17:41:43 +0300
committerMohamedBassem <me@mbassem.com>2024-08-24 18:35:34 +0300
commitdc68b44933008c2e319e2688552dd2557a97b50e (patch)
tree72cb432edbdf5eff1d3aa80a664a79b987c6f084 /apps/mobile
parent809a9bc35ad4b975dbd4eacc5c6aa8ab285b6d9a (diff)
downloadkarakeep-dc68b44933008c2e319e2688552dd2557a97b50e.tar.zst
fix(mobile): Change the next note text input to have multiple lines by default
Diffstat (limited to 'apps/mobile')
-rw-r--r--apps/mobile/app/dashboard/add-note.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/mobile/app/dashboard/add-note.tsx b/apps/mobile/app/dashboard/add-note.tsx
index 6b8f0fef..62296fd4 100644
--- a/apps/mobile/app/dashboard/add-note.tsx
+++ b/apps/mobile/app/dashboard/add-note.tsx
@@ -44,8 +44,10 @@ export default function AddNote() {
value={text}
onChangeText={setText}
multiline
+ numberOfLines={8}
placeholder="What's on your mind?"
autoFocus
+ textAlignVertical="top"
/>
<Button
onPress={() => mutate({ type: BookmarkTypes.TEXT, text })}