iumeng 0.0.6+4 iumeng: ^0.0.6+4 copied to clipboard
umeng
/*
* @Author: iptoday wangdong1221@outlook.com
* @Date: 2022-05-25 20:54:10
* @LastEditors: iptoday wangdong1221@outlook.com
* @LastEditTime: 2022-08-08 18:26:00
* @FilePath: /iumeng/example/lib/main.dart
*
* Copyright (c) 2022 by iptoday wangdong1221@outlook.com, All Rights Reserved.
*/
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:iumeng/iumeng.dart';
void main() {
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
void initState() {
super.initState();
Iumeng.instance.addEventHandler(
deviceToken: (v) {},
);
initPlatformState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
// Platform messages may fail, so we use a try/catch PlatformException.
// We also handle the message potentially returning null.
// try {
// platformVersion = await _iumengPlugin.getPlatformVersion() ??
// 'Unknown platform version';
// } on PlatformException {
// platformVersion = 'Failed to get platform version.';
// }
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
setState(() {});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
),
);
}
}