From be561c6d9fcf330f01047e7681441ebe85db65f4 Mon Sep 17 00:00:00 2001 From: tapframe Date: Wed, 22 Oct 2025 17:25:12 +0530 Subject: [PATCH] adjusted android bottom tab height --- src/navigation/AppNavigator.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/navigation/AppNavigator.tsx b/src/navigation/AppNavigator.tsx index 318d6db..365504a 100644 --- a/src/navigation/AppNavigator.tsx +++ b/src/navigation/AppNavigator.tsx @@ -692,7 +692,7 @@ const MainTabs = () => { bottom: 0, left: 0, right: 0, - height: 85 + insets.bottom, + height: Platform.OS === 'android' ? 70 + insets.bottom : 85 + insets.bottom, backgroundColor: 'transparent', overflow: 'hidden', }}> @@ -742,8 +742,8 @@ const MainTabs = () => {