Flutter plugin for umeng:analytics
import 'package:platform/platform.dart';
final Platform platform = const LocalPlatform();
if (platform.isAndroid)
UMengAnalytics.init('Android AppKey',
policy: Policy.BATCH, encrypt: true, reportCrash: false);
else if (platform.isIOS)
UMengAnalytics.init('iOS AppKey',
policy: Policy.BATCH, encrypt: true, reportCrash: false);
initState() {
super.initState();
UMengAnalytics.beginPageView("home");
}
dispose() {
super.dispose();
UMengAnalytics.endPageView("home");
}
someFunction() {
UMengAnalytics.logEvent("some click");
}
For help getting started with Flutter, view our online documentation.
For help on editing plugin code, view the documentation.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_umeng_analytics/flutter_umeng_analytics.dart';
void main() => runApp(new MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
static bool _inited;
@override
initState() {
super.initState();
if (_inited == null) {
_inited = true;
UMengAnalytics.init('5a20cc45f43e48512000015d',
policy: Policy.BATCH, encrypt: true, reportCrash: false);
}
}
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: new Text('Plugin example app'),
),
body: new Center(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
new RaisedButton(
onPressed: () {
UMengAnalytics.logEvent("hello");
},
child: new Text('Running on: hello'),
),
]),
),
),
);
}
}
Add this to your package's pubspec.yaml file:
dependencies:
flutter_umeng_analytics: "^0.0.1"
You can install packages from the command line:
with Flutter:
$ flutter packages get
Alternatively, your editor might support packages get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:flutter_umeng_analytics/flutter_umeng_analytics.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
0.0.1 | Jan 19, 2018 |
|
|
We analyzed this package on Apr 23, 2018, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
0 | / 100 |
Health:
Code health derived from static analysis.
[more]
|
52 | / 100 |
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
99 | / 100 |
Overall score:
Weighted score of the above.
[more]
|
35 |
Detected platforms: Flutter
References Flutter, and has no conflicting libraries.
Fix analysis and formatting issues.
Analysis or formatting checks reported 4 warnings.
Strong-mode analysis of
lib/flutter_umeng_analytics.dart
gave the following warning:line: 35 col: 10
This function declares a return type of 'Future<Null>', but doesn't end with a return statement.
The description is too short.
Add more detail about the package, what it does and what is its target use case. Try to write at least 60 characters.
Package is pre-v1 release.
While there is nothing inherently wrong with versions of
0.*.*
, it usually means that the author is still experimenting with the general direction API.
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
flutter | 0.0.0 | ||
Transitive dependencies | |||
collection | 1.14.6 | 1.14.9 | |
meta | 1.1.2 | ||
sky_engine | 0.0.99 | ||
typed_data | 1.1.5 | ||
vector_math | 2.0.6 |