我有多个页面。screen_one和screen_two。首先是screen_one到screen_two,然后我想在从screen_two返回到screen_one时显示插页式广告。
答案 0 :(得分:0)
您可以在屏幕二的小部件树顶部使用WillPopScope小部件,在用户使用后退按钮时设置功能,但在此上显示广告违反admob政策。
return WillPopScope(
onWillPop: () async {
showInterstitial();
return null;
child: ...
},
);