/
1.0.0 - Flutter - Banner
1.0.0 - Flutter - Banner
Rectangular advertisements that remain visible on the screen during user interaction with the application, and have the ability to refresh automatically after a specified duration.
Show the Ad
In the example we are using a Test Id.
If you are not testing the app, change it for the proper ID that you got from us.
@override
Widget build(BuildContext context) => Scaffold(
appBar: ...,
body: Column(children: [
...
R89Banner(
configurationId: ConfigBuilder.bannerTestR89ConfigId),
...
],),
);
Lifecycle Events
To receive the lifecycle events, provide BannerEventListener
to R89Banner
via lifecycleCallbacks
parameter. Details about BannerEventListener
can be found in the Reference. (TODO link)
@override
Widget build(BuildContext context) => Scaffold(
appBar: ...,
body: Column(children: [
...
R89Banner(
configurationId: ConfigBuilder.bannerTestR89ConfigId,
lifecycleCallbacks: BannerEventListener.callbacks(
onLoadedCallback: () {},
onImpressionCallback: () {},
onLayoutChangeCallback: (width, height) {},
onClickCallback: () {},
onOpenCallback: () {},
onCloseCallback: () {},
onFailedToLoadCallback: (error) {},)
),
...
],),
);
, multiple selections available,
Related content
1.0.0 - Flutter - OutStream
1.0.0 - Flutter - OutStream
More like this
1.0.0 - Flutter - Ad Formats
1.0.0 - Flutter - Ad Formats
More like this
1.0.0 - Flutter - Interstitial
1.0.0 - Flutter - Interstitial
More like this
1.0.0 - iOS SDK - Banner
1.0.0 - iOS SDK - Banner
More like this
1.0.0 - Flutter - Manual Initialization
1.0.0 - Flutter - Manual Initialization
More like this
Banner
Banner
More like this