startapp 0.1.0 copy "startapp: ^0.1.0" to clipboard
startapp: ^0.1.0 copied to clipboard

outdated

Flutter plugin for StartApp SDK

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'),
                    AdBanner(),
                  ],
                )
            )
        )
    );
  }
}
29
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Flutter plugin for StartApp SDK

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on startapp