Answers for "how to remove title of screen in react navigation"

0

how to hide title bar react-navigation

<Root.Screen options={{headerShown: false}}/>
Posted by: Guest on December-18-2020
0

hide header title in react navigation Drawer navigation

Inside the <Drawer.Screen that you want to hide the header title, make the headerTitle inside options to have the value of an empty string:

<Drawer.Screen name ="MyBottomTabs" component ={MyTabs}  options={{ headerTitle:'' }} />
Posted by: Guest on January-11-2022

Code answers related to "how to remove title of screen in react navigation"

Code answers related to "Javascript"

Browse Popular Code Answers by Language