React Navigation back() and goBack() not working
问题 I'm trying to go back two screens. The goal is to go from EditPage to Cover . Here is my navigation stack: Main -> Cover -> EditCover -> EditPage I read the docs and it says to supply a key of the screen you want to go back from, here's my code: this.props.navigation.dispatch(NavigationActions.back({key: 'EditCover'})); I've also tried (with no luck): this.props.navigation.dispatch(NavigationActions.back('EditCover')); this.props.navigation.dispatch(NavigationActions.back({key: 'EditCover'}))