diff --git a/client/react-native/common/components/Navigator/BottomNavigator.js b/client/react-native/common/components/Navigator/BottomNavigator.js index e10b9e3989..19e0518368 100644 --- a/client/react-native/common/components/Navigator/BottomNavigator.js +++ b/client/react-native/common/components/Navigator/BottomNavigator.js @@ -191,8 +191,7 @@ const options = { defaultNavigationOptions: handleBothNavigationsOptions, tabBarOptions: { showIcon: true, - showLabel: true, - upperCaseLabel: false, + showLabel: false, activeTintColor: colors.fakeBlack, inactiveTintColor: colors.lightGrey, indicatorStyle: { @@ -204,12 +203,12 @@ const options = { borderTopWidth: 0.5, borderTopColor: colors.borderGrey, shadowColor: colors.shadowGrey, - shadowOffset: { height: -5, width: 0 }, + shadowOffset: { height: Platform.OS === 'web' ? 0 : -5, width: 0 }, shadowOpacity: 0.2, - shadowRadius: 5, + shadowRadius: Platform.OS === 'web' ? 5 : 3, ...(Platform.OS === 'android' - ? { height: 68, paddingTop: 3 } - : { height: 64, paddingTop: 5, paddingBottom: 6 }), + ? { height: 54, paddingTop: 3 } + : { height: 50.500, paddingTop: 5, paddingBottom: 6 }), }, ], }, diff --git a/client/react-native/common/components/Screens/Chats/Detail.js b/client/react-native/common/components/Screens/Chats/Detail.js index 0114d42779..e6c697355c 100644 --- a/client/react-native/common/components/Screens/Chats/Detail.js +++ b/client/react-native/common/components/Screens/Chats/Detail.js @@ -235,7 +235,7 @@ class Input extends PureComponent { align='center' style={ Platform.OS === 'web' - ? [{ position: 'absolute', bottom: 0, left: 0, right: 0 }, shadow] + ? [{ borderTopWidth: 0.5, borderTopColor: colors.borderGrey, position: 'absolute', bottom: 0, left: 0, right: 0 }, shadow] : [shadow] } > @@ -354,7 +354,7 @@ class Detail extends PureComponent { } )} - rightBtnIcon='settings' + rightBtnIcon='more-vertical' onPressRightBtn={() => navigation.navigate('chats/settings', { conversation: navigation.state.params,