Reputation: 25
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
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