Skip to content

Commit

Permalink
fixed whitespacing
Browse files Browse the repository at this point in the history
  • Loading branch information
h1divp committed Sep 20, 2024
1 parent f11946b commit f615cd5
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions client/app/navigation/AppNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,19 @@ import { Home } from "react-native-feather";
import {User} from "react-native-feather";

const Tab = createBottomTabNavigator();




const AppNavigator = () => {
return (
<LocationProvider>
<SocketProvider>
<UserProvider>
<Tab.Navigator
screenOptions={{


headerShown: false,
tabBarLabelStyle: {
fontSize: 15,
}
}}>
<Tab.Screen name="Home" component={ChatScreen} options={{

tabBarIcon:({ focused, color, size }) => {
return(<Home width = {size} stroke = {color}/>
)
Expand All @@ -44,21 +37,11 @@ const AppNavigator = () => {
}
}
/>



</Tab.Navigator>
</UserProvider>
</SocketProvider>
</LocationProvider>
);
};








export default AppNavigator;

0 comments on commit f615cd5

Please sign in to comment.