diff options
author | Ansh Nanda <anshnanda10@gmail.com> | 2023-05-25 00:17:57 -0700 |
---|---|---|
committer | Ansh Nanda <anshnanda10@gmail.com> | 2023-05-25 00:17:57 -0700 |
commit | 0bdb0ac006a63604f23e73330cb7d6365bb36b4b (patch) | |
tree | 5a52a88ae249967a616e9132396126c287e02b90 /src/view/com | |
parent | 007c523010503e01345753f53ce90128dd8f6f15 (diff) | |
download | voidsky-0bdb0ac006a63604f23e73330cb7d6365bb36b4b.tar.zst |
put user avatar on bottom bar and replace with hamburger menu on top
Diffstat (limited to 'src/view/com')
-rw-r--r-- | src/view/com/pager/FeedsTabBarMobile.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/pager/FeedsTabBarMobile.tsx b/src/view/com/pager/FeedsTabBarMobile.tsx index ff922d446..b99efcfed 100644 --- a/src/view/com/pager/FeedsTabBarMobile.tsx +++ b/src/view/com/pager/FeedsTabBarMobile.tsx @@ -3,12 +3,12 @@ import {Animated, StyleSheet, TouchableOpacity, View} from 'react-native' import {observer} from 'mobx-react-lite' import {TabBar} from 'view/com/pager/TabBar' import {RenderTabBarFnProps} from 'view/com/pager/Pager' -import {UserAvatar} from '../util/UserAvatar' import {useStores} from 'state/index' import {usePalette} from 'lib/hooks/usePalette' import {useAnimatedValue} from 'lib/hooks/useAnimatedValue' import {Link} from '../util/Link' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' +import {colors} from 'lib/styles' export const FeedsTabBar = observer( ( @@ -50,7 +50,7 @@ export const FeedsTabBar = observer( accessibilityRole="button" accessibilityLabel="Open navigation" accessibilityHint="Access profile and other navigation links"> - <UserAvatar avatar={store.me.avatar} size={30} /> + <FontAwesomeIcon icon="bars" size={24} color={colors.blue3} /> </TouchableOpacity> </View> <View style={[pal.view]}> |