I\'m using react native navigation (react-navigation) StackNavigator. it starts from the Login page throughout the whole lifecycle of the app. I don\'t want to have a back
Simply doing
headerLeft: null
might be deprecated by the time you read this answer. You should use following
navigationOptions = { headerTitle : "Title", headerLeft : () => {}, }