flutter_gromore_ads 2.1.0 flutter_gromore_ads: ^2.1.0 copied to clipboard
一款优质的 Flutter 广告插件(Gromore、穿山甲)
import 'package:flutter/material.dart';
import 'home_page.dart';
void main() {
// 绑定引擎
WidgetsFlutterBinding.ensureInitialized();
// 启动
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: HomePage(),
);
}
}