FLUTTER ECOSYSTEM

flutuate/mixpanel

一個用於 Mixpanel 的 Flutter 外掛

mixpanel 專案封面
Stars
11
Forks
21
最近推送(UTC)
2023年9月18日
專案狀態
未封存
Luciano Bonifacio Rodrigues GitHub avatar
GITHUB User

Luciano Bonifacio Rodrigues ↗

Developer at flutuate.io, an innovative solutions builder.

flutuate.ioBrazil, SC, Blumenau官方網站 ↗
語言DartJavaSwiftRubyObjective-C

此儲存庫發佈的套件

使用的依賴

依賴清單 4 項
  • flutter{"sdk":"flutter"}
  • test^1.14.4
  • flutter_test開發依賴{"sdk":"flutter"}
  • flutter_driver開發依賴{"sdk":"flutter"}

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

flutuate_mixpanel

A Flutter plugin for Mixpanel.

Getting Started

This plugin wraps the most of the functions from Mixpanel SDK. It runs on both Android and iOS. To use it, you must have a registered token from Mixpanel.

Configuration

Add flutuate_mixpanel to pubspec.yaml under the dependencies field.

dependencies:
  flutuate_mixpanel: ^latest_version

Import

Add the following import in your library :

import 'package:flutuate_mixpanel/flutuate_mixpanel.dart';

Usage

For you to use the plugin, in your Flutter app, get an instance of Mixpanel plugin:

    MixpanelAPI instance = await MixpanelAPI.getInstance('<your_mixpanel_token');

So after, you only call the API methods specified in Mixpanel Android API documentation.

See also the Mixpanel documentation for more informations.

Example

The sample project has more details about how to use the plugin.