Albert Tetteh Adjei
Albert Tetteh Adjei

Reputation: 25

How to show unity ads banner in flutter

I have an app which I developed in flutter. I want to show a unity banner ads only in the bottom navigation bar of the app. Code snippet will be appropriate.

Upvotes: 0

Views: 331

Answers (1)

Jasmin Sojitra
Jasmin Sojitra

Reputation: 1301

Here is plugin you can use that https://pub.dev/packages/unity_ads_plugin

    UnityBannerAd(
      placementId: 'PLACEMENT_ID',
      onLoad: (placementId) => print('Banner loaded: $placementId'),
      onClick: (placementId) => print('Banner clicked: $placementId'),
      onFailed: (placementId, error, message) => print('Banner Ad $placementId failed: $error $message'),
)

Upvotes: 0

Related Questions