mintegraladmobpk 0.0.1 copy "mintegraladmobpk: ^0.0.1" to clipboard
mintegraladmobpk: ^0.0.1 copied to clipboard

This package is use to migrate advertisement.

mintegraladmobpk #

A new flutter plugin project.

Getting Started #

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

import 'package:flutter/material.dart'; import 'dart:async';

import 'package:flutter/services.dart'; import 'package:mintegraladmobpk/mintegraladmobpk.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget { @override _MyAppState createState() => _MyAppState(); }

class _MyAppState extends State

@override void initState() { super.initState(); initPlatformState(); }

// Platform messages are asynchronous, so we initialize in an async method. Future

// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;

setState(() {
  _platformVersion = platformVersion;
});

}

@override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar( title: const Text('Flutter demo app'), ), body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children:[ Text('Running on: $_platformVersion\n'), RaisedButton( child: Text("Init advertisement"), onPressed: initAdvertisement, color: Colors.red, textColor: Colors.white, splashColor: Colors.grey, padding: EdgeInsets.fromLTRB(10, 10, 10, 10), ) , RaisedButton( child: Text("Load advertisement "), onPressed: loadAdvertisement, color: Colors.red, textColor: Colors.white, splashColor: Colors.grey, padding: EdgeInsets.fromLTRB(10, 10, 10, 10), ), RaisedButton( child: Text("Show advertisement "), onPressed: showAdvertisement, color: Colors.red, textColor: Colors.white, splashColor: Colors.grey, padding: EdgeInsets.fromLTRB(10, 10, 10, 10), )

          ],
        )

    ),
  ),
);

} void initAdvertisement() async{ await Mintegraladmobpk.initAdvertisement;

} void loadAdvertisement() async{

await Mintegraladmobpk.loaddAdvertisement;

} void showAdvertisement() async{

await Mintegraladmobpk.showAdvertisement;

} }

0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

This package is use to migrate advertisement.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on mintegraladmobpk