From ef07776c5de1957078583030a0555f8d6ffc443f Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Tue, 19 May 2026 11:17:26 -0700 Subject: [PATCH 1/2] Fix safe area on Android, so that the tabs are not overlapped by the Android UI --- app/account/[accountId].tsx | 4 +++- app/account/tabs/dashboard-tab.tsx | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app/account/[accountId].tsx b/app/account/[accountId].tsx index 99f6e0e..d12dbfb 100644 --- a/app/account/[accountId].tsx +++ b/app/account/[accountId].tsx @@ -504,7 +504,9 @@ export default function AccountScreen() { /> ) : null} - + Date: Tue, 19 May 2026 11:25:18 -0700 Subject: [PATCH 2/2] Only add bottom inset on Android --- app/account/[accountId].tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/account/[accountId].tsx b/app/account/[accountId].tsx index d12dbfb..937b58a 100644 --- a/app/account/[accountId].tsx +++ b/app/account/[accountId].tsx @@ -16,6 +16,7 @@ import { ActivityIndicator, Alert, Image, + Platform, Pressable, StyleSheet, Text, @@ -505,7 +506,10 @@ export default function AccountScreen() { ) : null}