@@ -13,12 +13,14 @@ import type { AppNavigationMethods, AppNavigationProp } from '../nav/AppNavigato
13
13
import { bottomTabNavigatorConfig } from '../styles/tabs' ;
14
14
import HomeScreen from './HomeScreen' ;
15
15
import PmConversationsScreen from '../pm-conversations/PmConversationsScreen' ;
16
- import { IconInbox , IconStream , IconPeople } from '../common/Icons' ;
16
+ import { IconInbox , IconStream , IconPeople , IconPrivateChat } from '../common/Icons' ;
17
17
import OwnAvatar from '../common/OwnAvatar' ;
18
18
import OfflineNotice from '../common/OfflineNotice' ;
19
19
import ProfileScreen from '../account-info/ProfileScreen' ;
20
20
import styles , { BRAND_COLOR , ThemeContext } from '../styles' ;
21
21
import SubscriptionsScreen from '../streams/SubscriptionsScreen' ;
22
+ import UsersScreen from '../users/UsersScreen' ;
23
+ import UsersProfileScreen from '../users/UsersProfileScreen' ;
22
24
23
25
export type MainTabsNavigatorParamList = { |
24
26
+ home : RouteParamsOf < typeof HomeScreen > ,
@@ -77,14 +79,22 @@ export default function MainTabsScreen(props: Props): Node {
77
79
component = { PmConversationsScreen }
78
80
options = { {
79
81
tabBarLabel : 'Private messages' ,
80
- tabBarIcon : ( { color } ) => < IconPeople size = { 24 } color = { color } /> ,
82
+ tabBarIcon : ( { color } ) => < IconPrivateChat size = { 24 } color = { color } /> ,
81
83
tabBarBadge : unreadPmsCount > 0 ? unreadPmsCount : undefined ,
82
84
tabBarBadgeStyle : {
83
85
color : 'white' ,
84
86
backgroundColor : BRAND_COLOR ,
85
87
} ,
86
88
} }
87
89
/>
90
+ < Tab . Screen
91
+ name = "users"
92
+ component = { UsersProfileScreen }
93
+ options = { {
94
+ tabBarLabel : 'Users' ,
95
+ tabBarIcon : ( { color } ) => < IconPeople size = { 24 } color = { color } /> ,
96
+ } }
97
+ />
88
98
< Tab . Screen
89
99
name = "profile"
90
100
component = { ProfileScreen }
0 commit comments