flutter_facebook_login
A Flutter plugin for allowing users to authenticate with native Android & iOS Facebook login SDKs.
A Flutter plugin for using the native Facebook Login SDKs on Android and iOS.
This plugin uses the new Gradle 4.1 and Android Studio 3.0 project setup.
I created this library out of necessity, as there was nothing that fit my needs at the time. I needed something that was well tested, offered as much control as the native Facebook SDKs, and also had good code quality.
Dart support
- Dart 1: 1.0.x.
- Dart 2: 1.1.0 and up.
How do I use it?
The library tries to closely match the native Android & iOS login SDK APIs where possible. For complete API documentation, just see the source code. Everything is documented there.
Since sample code is worth more than one page of documentation, here are the usual cases covered:
You can also change the visual appearance of the login dialog. For example:
The complete API documentation lives with the source code, which can be found here.
Getting the Facebook profile of a signed in user
For now, this feature isn't going to be integrated into this plugin. See the discussion here.
However, you can get do this in four lines of Dart code:
The profile
variable will now contain the following information:
Installation
To get things up and running, you'll have to declare a pubspec dependency in your Flutter project.
Also some minimal Android & iOS specific configuration must be done, otherise your app will crash.
On your Flutter project
See the installation instructions on pub.
Android
This assumes that you've done the "Associate Your Package Name and Default Class with Your App" and
"Provide the Development and Release Key Hashes for Your App" in the the Facebook Login documentation for Android site.
After you've done that, find out what your Facebook App ID is. You can find your Facebook App ID in your Facebook App's dashboard in the Facebook developer console.
Once you have the Facebook App ID figured out, youll have to do two things.
First, copy-paste the following to your strings resource file. If you don't have one, just create it.
<your project root>/android/app/src/main/res/values/strings.xml
Then you'll just have to copy-paste the following to your Android Manifest:
<your project root>/android/app/src/main/AndroidManifest.xml
A sample of a complete AndroidManifest file can be found here.
Done!
iOS
This assumes that you've done the "Register and Configure Your App with Facebook" step in the
the Facebook Login documentation for iOS site.
After you've done that, find out what your Facebook App ID is. You can find your Facebook App ID in your Facebook App's dashboard in the Facebook developer console.
Once you have the Facebook App ID figured out, then you'll just have to copy-paste the following to your Info.plist file, before the ending </dict></plist>
tags.
<your project root>/ios/Runner/Info.plist
A sample of a complete Info.plist file can be found here.