From 40906331e752694de96b762bdd5fbd4ad1aecb23 Mon Sep 17 00:00:00 2001 From: suraj-markup Date: Tue, 3 Mar 2026 03:53:39 +0530 Subject: [PATCH] fix(mobile): increase message bar padding above keyboard Add extra padding (keyboardHeight + 10) so the input comfortably clears the keyboard suggestions/accessory bar on all devices. Co-Authored-By: Claude Opus 4.6 --- packages/mobile/src/screens/SessionDetailScreen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mobile/src/screens/SessionDetailScreen.tsx b/packages/mobile/src/screens/SessionDetailScreen.tsx index 1be162ce6..f89164bb7 100644 --- a/packages/mobile/src/screens/SessionDetailScreen.tsx +++ b/packages/mobile/src/screens/SessionDetailScreen.tsx @@ -350,7 +350,7 @@ export default function SessionDetailScreen({ route, navigation }: Props) { {/* Message input — only show for active sessions */} {!isDone && ( - 0 ? keyboardHeight - (Platform.OS === "ios" ? 34 : 0) : 10 }]}> + 0 ? keyboardHeight + 10 : 10 }]}>