feat: remove tab bar labels

This commit is contained in:
Vinicius Souza 2024-10-25 08:48:17 -03:00
parent a028f2befc
commit e3cace9026

View file

@ -18,7 +18,10 @@ const { Navigator, Screen } = createBottomTabNavigator<AppRoutes>();
export function AppRoutes() {
return (
<Navigator screenOptions={{ headerShown: false }}>
<Navigator screenOptions={{
headerShown: false,
tabBarShowLabel: false,
}}>
<Screen name="Home" component={Home} />
<Screen name="History" component={History} />
<Screen name="Profile" component={Profile} />