我正在尝试处理android上的后退按钮,因为我的React Native应用在根屏幕上按下了后退按钮时自定义了逻辑...是否有类似String str = "abc d 1234567890pqr 54897";
str = str.replaceAll("[^\\d ]", "");
的方法
为了做这样的事情:
Navigation.getCurrentRoutes()
“反应本机导航”:“ 3.0.0-alpha.2”
答案 0 :(得分:0)
事实证明,没有这种方法,并且两个选项是: 1)自行处理后退按钮(覆盖)或 2)只需将您的自定义逻辑添加到componentWillUnmount()并继续使用本机react-native-navigation
选项2对我有用
参考:https://github.com/wix/react-native-navigation/pull/4226#issuecomment-433683885 https://github.com/wix/react-native-navigation/issues/4231