whistle_feed

Whistle_feed Ads plugin for Flutter Applications. This plugin is able to display Whistle_feed Ads.

Getting Started

Note

This plugin depends on other plugins like Provider , http , package_info and url_launcher .

  • Plugin uses provider package (while using this library if you already initialized provider then check it,if you are getting error on provider you can remove your provider or else fine) same for http,package_info url_launcher

This Dart package will utilize the plugin, whistle_feed, so to quickly and easily implement ads into a Flutter app.

Sign Up and Get Your Publisher token here

website link

Note:- Publisher token is required to serve the ads.

initialize the plugin of latest version

And so, for this version, add this to your package's pubspec.yaml file instead: yaml dependencies: whistle_feed: latest version

Troubleshooting steps if ads are not showing.

  1. Check if correct publisher token provided,
  2. Passing addslistener as null or object of the class,
  3. Minimum pencil size is 1
  4. Maximum pencil size is 3

pixelerrors

Note: If pixel error is encountered kindly check sufficient height is provided which is proportional to pencil sizes.Also one can copy code from the website based on how many pencil ads one wants to show

for example

1 pencil = 1 cube , Maximum cube will be 3 Note :- required fields from developer : publisher token and pencil size (minimum size is 1 and maximum size is 4)

case 1 : if you want 1 cube Ui initialization will be

Whistle_adds( pencil_size: 1,publisher_token: 'publisher_token'),

1 cube adds

case 2: if you want 2 cubes Ui initialization will be

Whistle_adds( pencil_size: 2,publisher_token: 'publisher_token'),

2 cube adds

case 3: if you want 3 cubes Ui initialization will be

Whistle_adds( pencil_size: 3,publisher_token: 'publisher_token'),

3 cube adds

Github repository for reference

github_repository