startapp 0.1.0+1 startapp: ^0.1.0+1 copied to clipboard
Flutter plugin for StartApp SDK - Currently only support Android platform
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(),
],
)
)
)
);
}
}