diff options
Diffstat (limited to 'src/view/screens/Home.tsx')
-rw-r--r-- | src/view/screens/Home.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/view/screens/Home.tsx b/src/view/screens/Home.tsx index fa200e931..b38e1cc36 100644 --- a/src/view/screens/Home.tsx +++ b/src/view/screens/Home.tsx @@ -58,11 +58,11 @@ export const HomeScreen = withAuthRequired((_opts: Props) => { const renderTabBar = React.useCallback( (props: TabBarProps) => { return ( - <View style={[pal.view, styles.tabBar]}> + <View style={[pal.view, pal.border, styles.tabBar]}> <TouchableOpacity style={styles.tabBarAvi} onPress={onPressAvi}> <UserAvatar avatar={store.me.avatar} size={32} /> </TouchableOpacity> - <TabBar items={['Popular', 'Following']} {...props} /> + <TabBar items={['Suggested', 'Following']} {...props} /> </View> ) }, @@ -273,8 +273,10 @@ const styles = StyleSheet.create({ flexDirection: 'row', alignItems: 'center', paddingHorizontal: 18, + borderBottomWidth: 1, }, tabBarAvi: { marginRight: 16, + paddingBottom: 2, }, }) |