rafalbednarczuk/facebook_analytics
Flutter Facebook 分析
- Stars
- 9
- Forks
- 9
- 最近推送(UTC)
- 2021年3月2日
- 專案狀態
- 未封存
語言DartRubyKotlinSwiftShellObjective-C
使用的依賴
依賴清單 2 項
- flutter
{"sdk":"flutter"} - flutter_test開發依賴
{"sdk":"flutter"}
原始 README
以下為英文專案原文快照,最新內容請造訪 GitHub。
展開 / 收合專案 README
facebook_analytics
Flutter Package implementing Facebook Analytics.
Installation
Android
https://developers.facebook.com/quickstarts/
Complete only: Add SKD, App Info, Key Hashes
iOS
https://developers.facebook.com/quickstarts/
Complete only: Configure(add XML snippet to plist), Bundle Identifier
add this line in ios/Podfile to 9.0 (in most cases just uncomment this line in the beginning of Podfile)
platform :ios, '9.0'
Example
import 'package:facebook_analytics/facebook_analytics.dart';
final facebookAnalytics = FacebookAnalytics();
...
RaisedButton(onPressed: () {
facebookAnalytics.logEvent(
name: "test_event",
parameters: {"value": 10, "subname": "exampleStringValue"},
);
})