cooee_plugin 0.0.6 copy "cooee_plugin: ^0.0.6" to clipboard
cooee_plugin: ^0.0.6 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:cooee_plugin/cooee_plugin.dart';
import 'package:flutter/rendering.dart';

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

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

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

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

  void inAppTriggered(Map<String, dynamic> map) {
    this.setState(() {
      print("*************** Data " + map.toString());
    });
  }

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

    try {
      CooeePlugin.setCurrentScreen("CartPage");
      await CooeePlugin.sendEvent("Add To Cart", new Map<String, String>());
    } on Exception {
      print(Exception);
    }

    try {
      await CooeePlugin.updateUserProperties(
          {"foo": "bar", "Purchased Once": "true"});
    } catch (e) {
      print(e);
    }

    try {
      await CooeePlugin.updateUserData({
        "name": "Abhishek flutter",
        "email": "abhishek@flutter.com",
        "mobile": "4545454545"
      });
    } 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: Container(
            height: double.infinity,
            width: double.infinity,
            child: Center(
              child: Image(
                image: new AssetImage('assets/homepage.png'),
                width: double.infinity,
                height: double.infinity,
              ),
            ),
          ),
        ),
     /* ),*/
    );
  }

  void initHandlers() {
    sdk = new CooeePlugin();
    sdk.setCooeeInAppNotificationAction(inAppTriggered);
  }
}
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, shared_preferences

More

Packages that depend on cooee_plugin