Hem*_*Raj 21
我想你可以利用WillPopScopewidget.您可以传递一个回调函数,该函数将在视图关于pop时调用.只需在pop之前完成任何要完成的任务,然后返回true.
例:
Future<bool> _willPopCallback() async {
// await showDialog or Show add banners or whatever
// then
return true; // return true if the route to be popped
}
//then pass the callback to WillPopScope
new WillPopScope(child: new Scaffold(), onWillPop: _willPopCallback)
Run Code Online (Sandbox Code Playgroud)
希望有所帮助!
| 归档时间: |
|
| 查看次数: |
7442 次 |
| 最近记录: |