diff --git a/src/navigation/AppNavigator.tsx b/src/navigation/AppNavigator.tsx index 2407b9a21..8102042bf 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 44f36e554..e1b14e37c 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,