Commit 5a96d65 1 parent 0067433 commit 5a96d65 Copy full SHA for 5a96d65
File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ import { SocketProvider } from "../contexts/SocketContext";
7
7
import { NearbyUsersProvider } from "../contexts/NearbyUserContext" ;
8
8
import ChatScreen from "../screens/chat/ChatScreen" ;
9
9
import SettingsScreen from "../screens/settings/SettingsScreen" ;
10
- import { Home } from "react-native-feather" ;
11
- import { User } from "react-native-feather" ;
10
+ import { MessageSquare } from "react-native-feather" ;
11
+ import { Settings } from "react-native-feather" ;
12
12
import { NavigationContainer , NavigationIndependentTree } from "@react-navigation/native" ;
13
13
14
14
const Tab = createBottomTabNavigator ( ) ;
@@ -28,20 +28,20 @@ const AppNavigator = () => {
28
28
tabBarHideOnKeyboard : true ,
29
29
} } >
30
30
< Tab . Screen
31
- name = "Home "
31
+ name = "Chat "
32
32
component = { ChatScreen }
33
33
options = { {
34
34
tabBarIcon : ( { focused, color, size } ) => {
35
- return < Home width = { size } stroke = { color } /> ;
35
+ return < MessageSquare width = { size } stroke = { color } /> ;
36
36
} ,
37
37
} }
38
38
/>
39
39
< Tab . Screen
40
- name = "Profile "
40
+ name = "Settings "
41
41
component = { SettingsScreen }
42
42
options = { {
43
43
tabBarIcon : ( { focused, color, size } ) => {
44
- return < User width = { size } stroke = { color } /> ;
44
+ return < Settings width = { size } stroke = { color } /> ;
45
45
} ,
46
46
} }
47
47
/>
You can’t perform that action at this time.
0 commit comments