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:'' }} />