aliyun_push_flutter 1.0.0 aliyun_push_flutter: ^1.0.0 copied to clipboard
Aliyun Push Flutter plugin.
import 'package:flutter/material.dart';
import 'home.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return const MaterialApp(home: HomePage());
}
}