How To Use IronSource Ad Banner As Widget?

Viewed 30

The official IronSource library for flutter gives developers the banner usage like this,

 final size = IronSourceBannerSize.BANNER;
 size.isAdaptive = true; // Adaptive Banner
 IronSource.loadBanner(
   size: size,
   position: IronSourceBannerPosition.Bottom,
   verticalOffset: -50,
   placementName: 'DefaultBanner',
 );

Static loadBanner is a future method that returns nothing and overlays the banner on top of the app.

It means we are not unable to use in tree hierarchy like a widget.

Is there any point that i am missing?

0 Answers
Related