Skip to content

Feenposhleen/facebook_analytics

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

facebook_analytics

pub package

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"},
    );
  })

About

Flutter facebook analytics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 29.4%
  • Ruby 26.8%
  • Kotlin 22.3%
  • Swift 13.7%
  • Shell 4.2%
  • Objective-C 3.6%