flutter_unionad 0.0.3
flutter_unionad: ^0.0.3 copied to clipboard
A new flutter plugin for Bytedance-UnionAD
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:flutter_unionad_example/index.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: IndexPage(),
);
}
}