I want to hide header because I already have styled Toolbar in code:
import {createStackNavigator} from \'react-navigation\' const AppStackNavigator = createStac
try this options ={{ header: () => {}}} since you are explicitly not providing any argument to header function, it won't show any header. For more information refer this: react native docs
options ={{ header: () => {}}}