karte_core 1.3.0 copy "karte_core: ^1.3.0" to clipboard
karte_core: ^1.3.0 copied to clipboard

Flutter plugin for KARTE Core, provides a simple API for event tracking. Supports on Android and iOS.

example/lib/main.dart

import 'dart:async';

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

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

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

class _MyAppState extends State<MyApp> {
  String _visitorId = 'Unknown';
  bool _isOptOut = false;

  @override
  void initState() {
    super.initState();
    initPlatformState();
    Tracker.view("test");
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String visitorId = await KarteApp.visitorId;
    bool isOptOut = await KarteApp.isOptOut;

    // 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(() {
      _visitorId = visitorId;
      _isOptOut = isOptOut;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
          appBar: AppBar(
            title: const Text('KARTE Core example app'),
          ),
          body: Center(
            child: Column(
              // mainAxisAlignment: MainAxisAlignment.center,
              children: [
                Text('Visitor id:  $_visitorId'),
                Text('isOptOut:  $_isOptOut'),
                ElevatedButton(
                  onPressed: () => Tracker.track("test"),
                  child: Text("track"),
                ),
                ElevatedButton(
                  onPressed: () => Tracker.identify({"name": "sample"}),
                  child: Text("identify"),
                ),
                ElevatedButton(
                  onPressed: () => Tracker.view("test"),
                  child: Text("view"),
                ),
                ElevatedButton(
                  onPressed: () async {
                    KarteApp.optIn();
                    await initPlatformState();
                  },
                  child: Text("optIn"),
                ),
                ElevatedButton(
                  onPressed: () async {
                    KarteApp.optOut();
                    await initPlatformState();
                  },
                  child: Text("optOut"),
                ),
                ElevatedButton(
                  onPressed: () async {
                    // ignore: deprecated_member_use
                    var url = await UserSync.appendingQueryParameter(
                        "https://example.com");
                    print("url: $url");
                  },
                  child: Text("userSync query(dep)"),
                ),
                ElevatedButton(
                  onPressed: () async {
                    var script = await UserSync.getUserSyncScript();
                    print("script: $script");
                  },
                  child: Text("userSync script"),
                ),
              ],
            ),
          )),
    );
  }
}
0
likes
130
pub points
84%
popularity

Publisher

unverified uploader

Flutter plugin for KARTE Core, provides a simple API for event tracking. Supports on Android and iOS.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on karte_core