1) 要使后退按钮在 react-navigation v2 或更新版本中消失:
v2-v4:
navigationOptions: {
title: 'MyScreen',
headerLeft: null
}
v5:
{
navigationOptions: {
title: 'MyScreen',
headerLeft: ()=> null, // Note: using just `null` instead of a function should also work but could trigger a TS error
}
2)如果要清理导航堆栈:
假设您在要从中导航的屏幕上:
如果您使用的是 react-navigation v5 或更新版本,您可以使用navigation.reset
或CommonActions.reset
:
// Replace current navigation state with a new one,
// index value will be the current active route:
navigation.reset({
index: 0,
routes: [{ name: 'Profile' }],
});
来源和更多信息:https : //reactnavigation.org/docs/navigation-prop/#reset
或者:
navigation.dispatch(
CommonActions.reset({
index: 1,
routes: [
{ name: 'Home' },
{
name: 'Profile',
params: { user: 'jane' },
},
],
})
);
来源和更多信息在这里:https : //reactnavigation.org/docs/navigation-actions/#reset
对于旧版本的react导航:
v2-v4使用StackActions.reset(...)
import { StackActions, NavigationActions } from 'react-navigation';
const resetAction = StackActions.reset({
index: 0, // <-- currect active route from actions array
actions: [
NavigationActions.navigate({ routeName: 'myRouteWithDisabledBackFunctionality' }),
],
});
this.props.navigation.dispatch(resetAction);
v1使用NavigationActions.reset
3) 对于 android,您还必须使用 BackHandler 禁用硬件后退按钮:
http://reactnative.dev/docs/backhandler.html
或者如果你想使用钩子:
https://github.com/react-native-community/hooks#usebackhandler
否则,如果导航堆栈为空,应用程序将在按下 android 硬件后退按钮时关闭。
其他来源:感谢在下面添加评论并帮助更新 v5 的此答案的用户。