diff --git a/client/src/navigation/AppNavigator.tsx b/client/src/navigation/AppNavigator.tsx index fe52e176c..8baacf061 100644 --- a/client/src/navigation/AppNavigator.tsx +++ b/client/src/navigation/AppNavigator.tsx @@ -1,11 +1,21 @@ import { createBottomTabNavigator } from "@react-navigation/bottom-tabs"; -import * as React from "react"; - -import { LocationProvider } from "../contexts/LocationContext"; -import { SocketProvider } from "../contexts/SocketContext"; -import { UserProvider } from "../contexts/UserContext"; +import * as React from 'react'; +import { + SafeAreaView, + ScrollView, + StatusBar, + StyleSheet, + Text, + useColorScheme, + Image, + View, +} from 'react-native'; import ChatScreen from "../screens/chat/ChatScreen"; import SettingsScreen from "../screens/settings/SettingsScreen"; +import { SocketProvider } from "../contexts/SocketContext"; +import { LocationProvider } from "../contexts/LocationContext"; +import { UserProvider } from "../contexts/UserContext"; +import { Map, Settings, MessageSquare } from "react-native-feather"; const Tab = createBottomTabNavigator(); @@ -14,12 +24,85 @@ const AppNavigator = () => { - - - + + ( + + + + Map + + + + ) + }} + /> + ( + + + + Chat + + + + ) + }} /> + ( + + + + Settings + + + ) + }} + />