feat: remove tab bar labels
This commit is contained in:
parent
a028f2befc
commit
e3cace9026
1 changed files with 4 additions and 1 deletions
|
|
@ -18,7 +18,10 @@ const { Navigator, Screen } = createBottomTabNavigator<AppRoutes>();
|
||||||
|
|
||||||
export function AppRoutes() {
|
export function AppRoutes() {
|
||||||
return (
|
return (
|
||||||
<Navigator screenOptions={{ headerShown: false }}>
|
<Navigator screenOptions={{
|
||||||
|
headerShown: false,
|
||||||
|
tabBarShowLabel: false,
|
||||||
|
}}>
|
||||||
<Screen name="Home" component={Home} />
|
<Screen name="Home" component={Home} />
|
||||||
<Screen name="History" component={History} />
|
<Screen name="History" component={History} />
|
||||||
<Screen name="Profile" component={Profile} />
|
<Screen name="Profile" component={Profile} />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue