flutter_native_admob icon indicating copy to clipboard operation
flutter_native_admob copied to clipboard

[Question] NativeAdMob positioning & layouts

Open henry2man opened this issue 4 years ago • 3 comments

As far as I know native ads can be embedded in any part of the application. However when I include a NativeAdMob in my layout it always appears at the bottom, not embedded within the content (which I expected).

Is this the expected behavior? In such a case, what difference is there to the firebase_admob package?

Sample Code:

Column(
  children: <Widget>[
     Text("Beginning"),
     NativeAdmob(
       type: NativeAdmobType.banner,
       adUnitID: AdsController.footerBannerId,
     ),
    Text("End"),
   ])

Expected:

Beginning [Banner] End

What I got:

Beginning End ... [Banner]

henry2man avatar May 20 '20 08:05 henry2man

@duyduong Nobody? :/

henry2man avatar May 28 '20 16:05 henry2man

@henry2man can u try to wrap it in a Container?

duyduong avatar Jun 26 '20 13:06 duyduong

I've switched my impl to another package, admob_firebase 🤷🏻‍♂️

El vie., 26 jun. 2020 15:19, Duy Duong [email protected] escribió:

@henry2man https://github.com/henry2man can u try to wrap it in a Container?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/duyduong/flutter_native_admob/issues/43#issuecomment-650174850, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABDFQPDJEXIWCF6O6KGAFPLRYSN7VANCNFSM4NFW5D4Q .

henry2man avatar Jul 02 '20 15:07 henry2man