5-2. Interstitial Ads for Flutter
화면 전체를 덮는 형태의 광고입니다.
Before you begin
05. Flutter-Plugin GuideCreating an instance of Interstitial Ads.
...
OAMInterstitial _oamInterstitial = OAMInterstitial()
...Request an interstitial ad.
oamInterstitial.load(
placementId: interstitialPlacementId,
);Set the event listener for the interstitial ad.
_oamInterstitial.load(
callback: InterstitialCallBackListener(
onLoaded: onLoaded,
onLoadFailed: onLoadFailed,
onOpened: onOpened,
onOpenFailed: onOpenFailed,
onClosed: onClosed,
onClicked: onClicked,
),
);Display the interstitial ad
Custom options for interstitial ads.
변수
설명
Sample code for interstitial ads.
Last updated