startapp 0.2.0+1 copy "startapp: ^0.2.0+1" to clipboard
startapp: ^0.2.0+1 copied to clipboard

outdated

Flutter plugin for StartApp SDK - Currently only support Android platform

example/lib/main.dart

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

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

class MyApp extends StatefulWidget {
  @override
  State<StatefulWidget> createState() => MyAppState();
}

class MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        title: "StartApp Example",
        home: Scaffold(
            appBar: AppBar(title: const Text('StartApp Example')),
            body: Center(
                child: Column(
              children: <Widget>[
                Text('Banner sample'),

                // StartApp AdBanner as widget
                AdBanner(),

                // Display StartApp interstitial ad
                RaisedButton(
                    child: Text('Show interstitial ad'),
                    onPressed: () async {
                      await StartApp.showInterstitialAd();
                    }),
              ],
            ))));
  }
}
29
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Flutter plugin for StartApp SDK - Currently only support Android platform

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on startapp