You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The partial fix allows you to load ads from a cached flutter engine in the add to app scenario,
but it only works the first time the engine is attached to an activity.
Support for reusing the engine in another activity after the first one is destroyed is blocked
by this Flutter issue which affects all platform views: flutter/flutter#88880.
Fluid ads dynamically adjust their height based on their width. To help display them we've added a new
ad container, FluidAdManagerBannerAd, and a new widget FluidAdWidget.
You can see the fluid_example.dart for a reference of how to load and display a fluid ad.
Adds AdSize.getCurrentOrientationAnchoredAdaptiveBannerAdSize() to support getting an AnchoredAdaptiveBannerAdSize in the current orientation.
Previously the user had to specify an orientation (portrait / landscape) to create an AnchoredAdaptiveBannerAdSize. It has been made optional with this version. SDK will determine the current orientation of the device and return an appropriate AdSize.
More information on anchored adaptive banners can be found here:
Inline adaptive banner ads are meant to be used in scrollable content. They are of variable height and can be as tall as the device screen.
They differ from Fluid ads in that they only resize once when the ad is loaded.
You can see the inline_adaptive_example.dart for a reference of how to load and display
inline adaptive banners.
More information on inline adaptive banners can be found here: