cooee_plugin 0.0.5 copy "cooee_plugin: ^0.0.5" to clipboard
cooee_plugin: ^0.0.5 copied to clipboard

outdated

Hyperpersonalised Mobile App Re-Engagement via Machine Learning for Flutter apps.

example/lib/main.dart

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

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

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String platformVersion;

    try {
      await CooeePlugin.sendEvent("Add To Cart", new Map<String, String>());
    } on Exception {
      print(Exception);
    }
    // try{
    //   await CooeePlugin.updateUserData({"test":"test"});
    // } on Exception{
    //   print(Exception);
    // }
    try {
      await CooeePlugin.updateUserProperties({"foo": "bar", "Purchased Once": "true"});
    } catch (e) {
      print(e);
    }

    // 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(() {
      _platformVersion = platformVersion;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on: $_platformVersion\n'),
        ),
      ),
    );
  }
}
11
likes
0
pub points
38%
popularity

Publisher

verified publisherletscooee.com

Hyperpersonalised Mobile App Re-Engagement via Machine Learning for Flutter apps.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on cooee_plugin