我想在多个页面之间显示插页式广告

时间:2019-09-29 18:15:50

标签: flutter admob interstitial

我有多个页面。screen_one和screen_two。首先是screen_one到screen_two,然后我想在从screen_two返回到screen_one时显示插页式广告。

1 个答案:

答案 0 :(得分:0)

您可以在屏幕二的小部件树顶部使用WillPopScope小部件,在用户使用后退按钮时设置功能,但在此上显示广告违反admob政策。

           return WillPopScope(
                  onWillPop: () async {
                    showInterstitial();
                    return null;
                    child: ...
                  },
                );