rafalbednarczuk/facebook_analytics
Flutter Facebook विश्लेषण
- Stars
- 9
- Forks
- 9
- अंतिम पुश (UTC)
- 2 मार्च 2021
- प्रोजेक्ट स्थिति
- सक्रिय
भाषाएँ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"},
);
})