pedia / flutter_umeng_analytics

umeng analytics for Flutter
MIT License
36 stars 24 forks source link

flutter_umeng_analytics

Flutter plugin for umeng:analytics

Usage

Init

import 'dart:io';

if (Platform.isAndroid)
  UMengAnalytics.init('Android AppKey',
           encrypt: true, reportCrash: false);
else if (Platform.isIOS)
  UMengAnalytics.init('iOS AppKey',
          encrypt: true, reportCrash: false);

Log page

initState() {
  super.initState();

  UMengAnalytics.beginPageView("home");
}

dispose() {
  super.dispose();

  UMengAnalytics.endPageView("home");
}

someFunction() {
  UMengAnalytics.logEvent("some click");
}

Getting Started

For help getting started with Flutter, view our online documentation.

For help on editing plugin code, view the documentation.