gpt4 book ai didi

flutter - 为什么在使用 Navigator.pop 时会忽略 WillPopScope 中的 onWillPop?

转载 作者:行者123 更新时间:2023-12-04 02:36:33 36 4
gpt4 key购买 nike

我用的是 WillPopScope 尝试阻止路由弹出:

WillPopScope(
onWillPop: () async {
print('This is never called');
return false;
}
)

当我使用 Navigator.pop , 当前路由被简单地弹出而不是 onWillPop被称为:

Navigator.of(context).pop();

最佳答案

这是设计 .

您必须使用 Navigator.maybePop :

Tries to pop the current route of the navigator that most tightly encloses the given context, while honoring the route's Route.willPop state.



这意味着只有 Navigator.maybePop荣誉 onWillPop Navigator.pop :

Navigator.of(context).maybePop();

关于flutter - 为什么在使用 Navigator.pop 时会忽略 WillPopScope 中的 onWillPop?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61601938/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com