我希望在Flutter应用程序中具有与Android相同的onbackpressed逻辑,并且我想在单击手机后退按钮时关闭该应用程序。
当我们单击电话返回而不是应用返回按钮时,谁能告诉我该怎么做。
android:
@Override
public void onBackPressed()
{
// code here to show dialog
super.onBackPressed(); // optional depending on your needs
}
答案 0 :(得分:2)
您可以使用WillPopScope。
当封闭的ModalRoute
(与Navigator
内部使用)即将弹出时,该类会通知您。它甚至使您可以选择是否要弹出。
只需将第二个屏幕的Scaffold
包装在WillPopScope
中。
return WillPopScope(
onWillPop: () async {
// You can do some work here.
// Returning true allows the pop to happen, returning false prevents it.
return true;
},
child: ... // Your Scaffold goes here.
);
答案 1 :(得分:0)
希望这会有所帮助...
Future<bool> _onBackPressed() async {
// Your back press code here...
CommonUtils.showToast(context, "Back presses");
}
WillPopScope创建一个小部件,该小部件注册一个回调,以阻止用户否决尝试以关闭封闭的ModalRoute。
@override
Widget build(BuildContext context) {
return new WillPopScope(
onWillPop: _onBackPressed,
child: ...child
);
}
答案 2 :(得分:0)
您可以使用 Navigator.pop(context);
或 Navigator.maybePop(context);
;
而且maybePop
可以被WillPopScope#onWillPop
收听;