native_mixpanel 0.1.2 copy "native_mixpanel: ^0.1.2" to clipboard
native_mixpanel: ^0.1.2 copied to clipboard

Plugin for Mixpanel

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:native_mixpanel/native_mixpanel.dart';

void main() => runApp(MyApp(
  mixpanel: Mixpanel(
    shouldLogEvents: true,
    isOptedOut: false,
  ),
));

class MyApp extends StatefulWidget {
  final Mixpanel mixpanel;

  MyApp({
    @required this.mixpanel,
  }) : assert(mixpanel != null);

  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _statusMessage = 'Trying to send track event';
  int count;

  @override
  void initState() {
    super.initState();
    initPlatformState();
    count = 0;
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String initStatus;
    String eventName = 'First App Open';
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      await widget.mixpanel.initialize('your-token-here');
      await widget.mixpanel.track(eventName, {'Math': 'divide'});
      initStatus = 'Event Sent: $eventName';
    } on PlatformException {
      initStatus = 'Failed to send event: $eventName';
    }

    // 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(() {
      _statusMessage = initStatus;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: ListView(
          children: <Widget>[
            Center(
              child: Text(
                '$_statusMessage\n',
                style: TextStyle(
                  fontSize: 12.0,
                  height: 18.0 / 12.0,
                ),
              ),
            ),
            Container(
              alignment: Alignment.center,
              child: RaisedButton(
                onPressed: () async {
                  await widget.mixpanel.identify('101');
                },
                child: Text('Set Identity'),
              ),
            ),
            Container(
              alignment: Alignment.center,
              child: RaisedButton(
                onPressed: () async {
                  await widget.mixpanel.identify('102');
                },
                child: Text('Set People Identity'),
              ),
            ),
            Container(
              alignment: Alignment.center,
              child: RaisedButton(
                onPressed: () async {
                  await widget.mixpanel.alias('premium');
                },
                child: Text('Set Alias'),
              ),
            ),
            Container(
              alignment: Alignment.center,
              child: RaisedButton(
                onPressed: () async {
                  await widget.mixpanel.setPeopleProperties({'genre': 'rock'});
                },
                child: Text('Set People Properties'),
              ),
            ),
            Container(
              alignment: Alignment.center,
              child: RaisedButton(
                onPressed: () async {
                  await widget.mixpanel.incrementPeopleProperties({'purchase': 12.65, 'count': 6});
                },
                child: Text('Increment People Properties'),
              ),
            ),
            Container(
              alignment: Alignment.center,
              child: RaisedButton(
                onPressed: () async {
                  await widget.mixpanel.registerSuperProperties({'gender': 'he'});
                },
                child: Text('Register Super Properties'),
              ),
            ),
            Container(
              alignment: Alignment.center,
              child: RaisedButton(
                onPressed: () async {
                  await widget.mixpanel.track('TICK', {'createdAt': DateTime.now().toIso8601String()});
                },
                child: Text('Send Tick Event'),
              ),
            ),
            Container(
              alignment: Alignment.center,
              child: RaisedButton(
                onPressed: () async {
                  await widget.mixpanel.reset();
                },
                child: Icon(Icons.restore),
              ),
            ),
            Container(
              alignment: Alignment.center,
              child: RaisedButton(
                onPressed: () async {
                  await widget.mixpanel.flush();
                },
                child: Text('Flush'),
              ),
            ),
          ],
        ),
        floatingActionButton: FloatingActionButton(
          onPressed: () {
            widget.mixpanel.track('Added to Cart', {'ProductId': 'product-${count++}'});
          },
          child: Icon(Icons.plus_one),
        ),
      ),
    );
  }
}
2
likes
20
pub points
15%
popularity

Publisher

unverified uploader

Plugin for Mixpanel

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on native_mixpanel