Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

120
Views
bottom tabs how not to show name

I have app.js in which:

const Tab = createBottomTabNavigator();


export default function App() {

    return (
        <NavigationContainer>
            <Tab.Navigator>
                <Tab.Screen name='Home' component={Home} />
            </Tab.Navigator >
        </NavigationContainer>
    )

}

I display the bottom tabs, but I see the navigation at the top that shows "Home" as with StackNavigator. I want there to be no true field

about 4 years ago · Juan Pablo Isaza
3 answers
Answer question

0

To Hide bottom tab label


const Tab = createBottomTabNavigator();


export default function App() {

    return (
        <NavigationContainer>
            <Tab.Navigator
               tabBarOptions={{
                   showLabel: false, // add this line to hide tab label
     
                }}
               >
                <Tab.Screen name='Home' component={Home} />
            </Tab.Navigator >
        </NavigationContainer>
    )

}

about 4 years ago · Juan Pablo Isaza Report

0

It was necessary to add for tabs.screen options = {{headerShown: false}}

about 4 years ago · Juan Pablo Isaza Report

0

You should have to display null the label like as below. Add false to label in main tab navigator, so all pages remains same as not appearing the label.

add tabBarOptions={{showLabel: false}} in Tab.Navigator

<Tab.Navigator tabBarOptions={{showLabel: false}}>

Here is the official reference link: https://reactnavigation.org/docs/tab-based-navigation/

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!