iumeng 0.0.1 copy "iumeng: ^0.0.1" to clipboard
iumeng: ^0.0.1 copied to clipboard

discontinued
outdated

umeng

example/lib/main.dart

/*
 * @Author: iptoday wangdong1221@outlook.com
 * @Date: 2022-05-25 20:54:10
 * @LastEditors: iptoday wangdong1221@outlook.com
 * @LastEditTime: 2022-05-26 21:37:42
 * @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.deviceTokenCallback = (a) {};
    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'),
        ),
      ),
    );
  }
}
0
likes
0
points
15
downloads

Publisher

unverified uploader

Weekly Downloads

umeng

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on iumeng