A GoogleAdmob plugin for Flutter. Currently supports interstitial ads in both iOS and Android.
Contains two methods for loading and showing interstitial ads.
The plugin's loadInterstitial method accepts an APP_ID, AD_UNIT_ID, DEVICE_ID, and TESTING. The loadInterstitial method should be called in an init method to load an ad as the app starts. After that the ads will reload themselves whenever you close the previous one..
APP_ID = The app id given to you by admob AD_UNIT_ID = The ad unit id given to you by admob when you create an interstitial ad DEVICE_ID: Include the device id for the purpose of testing purposes if you plan to test ads on a specific device TESTING: A Boolean value indicating whether the ad units should be live or used for testing
The plugin's showInterstitial method accepts no variables, and as the name implies shows the ad you loaded with loadInterstitial.
View the example code included with the plugin in the example folder to see usage. The main.dart file included in the example folder shows an implementation of the plugin. It also includes a podfile example.
#SUPPORT THE DEVELOPER #BTC Address: 13JN3yubwaPzyuBpj4MtKqirVfweq1b6Sc
example/main.dart
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:admob/admob.dart';
void main() {
runApp(new MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
bool _showInterstitialResponse;
bool _loadInterstitialResponse;
String APP_ID = "ca-app-pub-9929690287684724~2116069294";
String INTERSTITIAL_AD_UNIT_ID = "ca-app-pub-9929690287684724/7809349294";
String DEVICE_ID = "FF18F6CCC658F56ECA4C4623DB5082CA";
bool TESTING = true;
@override
initState() {
super.initState();
loadInterstitialAd();
}
loadInterstitialAd() async {
bool loadResponse;
try {
loadResponse = await Admob.loadInterstitial(APP_ID, INTERSTITIAL_AD_UNIT_ID, DEVICE_ID, TESTING);
} on PlatformException {
loadResponse = false;
}
setState(() {
_loadInterstitialResponse = loadResponse;
});
}
showInterstitialAd() async {
bool showResponse;
try {
showResponse = await Admob.showInterstitial;
} on PlatformException {
showResponse = false;
}
setState(() {
_showInterstitialResponse = showResponse;
});
}
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text('Plugin example app'),
),
body: new Center(child:new Text("$_loadInterstitialResponse")),
floatingActionButton: new FloatingActionButton(
onPressed: () => showInterstitialAd(),
child: new Icon(Icons.add),
),
);
}
}
Add this to your package's pubspec.yaml file:
dependencies:
admob: ^0.1.0
You can install packages from the command line:
with pub:
$ pub get
with Flutter:
$ flutter packages get
Alternatively, your editor might support pub get
or flutter packages get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:admob/admob.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
0.1.27 | Jun 9, 2017 |
|
|
0.1.26 | Jun 9, 2017 |
|
|
0.1.25 | Jun 6, 2017 |
|
|
0.1.24 | Jun 6, 2017 |
|
|
0.1.23 | Jun 2, 2017 |
|
|
0.1.22 | Jun 2, 2017 |
|
|
0.1.21 | Jun 2, 2017 |
|
|
0.1.2 | Jun 2, 2017 |
|
|
0.1.1 | Jun 2, 2017 |
|
|
0.1.0 | Jun 2, 2017 |
|
|
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
61
|
Health:
Code health derived from static analysis.
[more]
|
--
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
--
|
Overall:
Weighted score of the above.
[more]
|
31
|
The package version is not analyzed, because it does not support Dart 2. Until this is resolved, the package will receive a health and maintenance score of 0.
Support Dart 2 in pubspec.yaml
.
The SDK constraint in pubspec.yaml
doesn't allow the Dart 2.0.0 release. For information about upgrading it to be Dart 2 compatible, please see https://www.dartlang.org/dart-2#migration.
Make sure dartdoc
successfully runs on your package's source files. (-10 points)
Running dartdoc
failed with the following output: