Скрыть заголовок заголовка в навигации по навигации React
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