AATKit Flutter Binding
Release Notes
  • Start
    • Setup
    • Initialization
    • Google Mobile Ads SDK
    • Consent
      • Managed Consent
  • Formats
    • Sticky Banner
    • Banner Cache
    • Fullscreen (Interstitial)
    • Rewarded Video
    • App Open Ads
  • Other
    • Events
Powered by GitBook
On this page
  • Create placement
  • Reload placement
  • Show placement
  1. Formats

Fullscreen (Interstitial)

Integrate fullscreen ads

Create placement

To create fullscreen placement, call createFullscreenPlacement method:

_aatKitBinding.createFullscreenPlacement();

You can change the placement name if needed:

AATKitBinding.kt
    //Change placement name if needed
    private val fullscreenPlacementName = "fullscreenPlacement"
    private var fullscreenPlacement: FullscreenPlacement? = null
AATKitBinding.swift
    //Change placement name if needed
    private let fullscreenPlacementName = "fullscreenPlacement"
    private var fullscreenPlacement: AATFullscreenPlacement? = nil

Reload placement

Start auto-reloading placement by calling:

_aatKitBinding.startFullscreenAutoReload();

Stop auto-reloading placement by calling:

_aatKitBinding.stopFullscreenAutoReload();

Show placement

When fullscreen ad is loaded, you can show it:

_aatKitBinding.showFullscreen();

PreviousBanner CacheNextRewarded Video

Last updated 1 year ago