umeng_analytics_push 2.1.8
umeng_analytics_push: ^2.1.8 copied to clipboard
Umeng Analytics&Push Flutter Plugins, Data analysis and message push for Android and IOS applications. Support vendor Push channel
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
),
),
);
}
}
copied to clipboard