Header -Titel in der React Navigation Drawer Navigation ausblenden
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:'' }} />
Anatu Green