From 3f2e6b08fc0a88f214c82fb784787221e66deed0 Mon Sep 17 00:00:00 2001 From: tapframe Date: Wed, 18 Jun 2025 18:03:52 +0530 Subject: [PATCH] some fixes --- src/navigation/AppNavigator.tsx | 2 +- src/screens/StreamsScreen.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/navigation/AppNavigator.tsx b/src/navigation/AppNavigator.tsx index 2407b9a..8102042 100644 --- a/src/navigation/AppNavigator.tsx +++ b/src/navigation/AppNavigator.tsx @@ -761,7 +761,7 @@ const AppNavigator = () => { component={MetadataScreen} options={{ headerShown: false, - animation: Platform.OS === 'ios' ? 'fade' : 'slide_from_right', + animation: 'fade', animationDuration: Platform.OS === 'android' ? 250 : 300, ...(Platform.OS === 'ios' && { cardStyleInterpolator: customFadeInterpolator, diff --git a/src/screens/StreamsScreen.tsx b/src/screens/StreamsScreen.tsx index 44f36e5..e1b14e3 100644 --- a/src/screens/StreamsScreen.tsx +++ b/src/screens/StreamsScreen.tsx @@ -1223,7 +1223,7 @@ const createStyles = (colors: any) => StyleSheet.create({ alignItems: 'center', gap: 8, padding: 14, - paddingTop: Platform.OS === 'android' ? 20 : 15, + paddingTop: Platform.OS === 'android' ? 45 : 15, }, backButtonText: { color: colors.highEmphasis,