> For the complete documentation index, see [llms.txt](https://aatkit.gitbook.io/aatkit-flutter-binding/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aatkit.gitbook.io/aatkit-flutter-binding/formats/fullscreen-interstitial.md).

# Fullscreen (Interstitial)

Integrate fullscreen ads

### Create placement <a href="#markdown-header-creating-placement" id="markdown-header-creating-placement"></a>

To create fullscreen placement, call `createFullscreenPlacement` method:

```dart
_aatKitBinding.createFullscreenPlacement();
```

You can change the placement name if needed:

{% code title="AATKitBinding.kt" %}

```kotlin
    //Change placement name if needed
    private val fullscreenPlacementName = "fullscreenPlacement"
    private var fullscreenPlacement: FullscreenPlacement? = null
```

{% endcode %}

{% code title="AATKitBinding.swift" %}

```swift
    //Change placement name if needed
    private let fullscreenPlacementName = "fullscreenPlacement"
    private var fullscreenPlacement: AATFullscreenPlacement? = nil
```

{% endcode %}

### Reload placement <a href="#markdown-header-reloading-placement" id="markdown-header-reloading-placement"></a>

Start auto-reloading placement by calling:

```dart
_aatKitBinding.startFullscreenAutoReload();
```

Stop auto-reloading placement by calling:

```dart
_aatKitBinding.stopFullscreenAutoReload();
```

### Show placement <a href="#markdown-header-showing-placement" id="markdown-header-showing-placement"></a>

When fullscreen ad is loaded, you can show it:

```dart
_aatKitBinding.showFullscreen();
```
