EddyVerbruggen / nativescript-admob

NativeScript plugin to earn some precious :moneybag::moneybag: with ads by Google AdMob
MIT License
69 stars 26 forks source link

Banner overlay over content #23

Closed nrbn closed 7 years ago

nrbn commented 7 years ago

The banner comes over my listview and when I have a list of just to cover the screen, the bottom list item becomes invisible, because the banner appears above. And listview does not scrolling.

Are there any css tricks I can do here?

EddyVerbruggen commented 7 years ago

Screenshot?

nrbn commented 7 years ago

screenshot_2017-06-14-13-52-36

nrbn commented 7 years ago

Admob is over last list item.

EddyVerbruggen commented 7 years ago

Yeah you should accomodate for that space, so just render the ListView with a bottom margin of 50. Could be done in many ways, fi using a GridLayout:

<GridLayout rows="*, 50">
  <ListView ..></ListView>
  <Label row="2" text="Admob banner here"></Label>
</GridLayout>
nrbn commented 7 years ago

Thanks. It works!!!!!

Skintillion commented 6 years ago

Doesn't work on Tablet the same as Phone. My tablet still overlaps with this.