Skip to content

d-apps/djalma_ads

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

djalma_ads

Djalma Ads is a package to make easier the implementation of calling methods from firebase_admob.

How to use

All needed methods are located in the class called Ads, all methods are static so you call them directly.

First you have to call Ads.init(), this method initialize Firebase AdMob, all parameters from this method are optional, if you don't pass any parameter, all IDs will be Test Ad Unit.

  await Ads.init(); // Normally called on main.dart

Before showing the ads for the first time it's necessary to load them except for banner. (I call them on main.dart)

  await Ads.loadInterstitial();
  await Ads.loadRewardedVideo();

After that you can call Ads.show... to show your ads.

  Ads.showBanner();
  Ads.showInterstitialAd();
  Ads.showRewarded();

getMargin

Method to get the height of smart banner for different devices.

Container(margin: EsdgeInsets.only(bottom: getMargin(context)))

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published