aliyun_push_flutter 1.0.0 copy "aliyun_push_flutter: ^1.0.0" to clipboard
aliyun_push_flutter: ^1.0.0 copied to clipboard

retracted

Aliyun Push Flutter plugin.

example/lib/main.dart

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());
  }
}