flutter_unionad 1.0.6
flutter_unionad: ^1.0.6 copied to clipboard
A flutter plugin for Bytedance-UnionAD.It is convenient for Android and IOS to directly call the method and native view of advertisement SDK.
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(),
);
}
}