Skip to content
This repository has been archived by the owner on Jun 16, 2020. It is now read-only.

pedia/flutter_umeng_analytics

Repository files navigation

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.

About

umeng analytics for Flutter

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published