如何访问Flutter Back按钮功能?

问题描述 投票:4回答:1

我想在用户返回上一页之前提供AdWords插页式广告。按下返回按钮后如何执行此操作?

function dart flutter
1个回答
9
投票

我认为你可以使用WillPopScope小部件。您可以传递一个回调函数,该函数将在视图关于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)

希望有所帮助!

© www.soinside.com 2019 - 2024. All rights reserved.