firebase_sign_in 0.0.16 copy "firebase_sign_in: ^0.0.16" to clipboard
firebase_sign_in: ^0.0.16 copied to clipboard

firebase google sign-in all methods in Flutter package project.

#Firebase_sign_in

Soacial singin package lets you all necessary methods to your Flutter app.

How to integrate in android #

Step 1: Configure Firebase project. Go to the Firebase console (https://console.firebase.google.com/) and create a new Firebase project or use an existing project.

Add an Android app to your Firebase project and follow the instructions to download the 'google-services.json' file. Place the 'google-services.json' file in the android/app directory of your Flutter project.

Step 2: Configure Android app Open the android/build.gradle file and add the following under the dependencies section:

classpath 'com.google.gms:google-services:4.3.10'

Open the android/app/build.gradle file and add the following at the bottom:

apply plugin: 'com.google.gms.google-services'

Step 3: Firebase initialized in your main function.

Step 4: Implement the sign-in logic

How to integrate in iOS #

Step 1: Configure Firebase project

Go to the Firebase console (https://console.firebase.google.com/) and create a new Firebase project or use an existing project.

Add an iOS app to your Firebase project and follow the instructions to download the 'GoogleService-Info.plist' file.

Place the 'GoogleService-Info.plist' file in the ios/Runner directory of your Flutter project.

Step 2: Configure iOS app

Open Xcode and navigate to your Flutter project's ios/Runner directory. Open the Runner.xcworkspace file.

In Xcode, select the "Runner" project in the project navigator on the left. Then, select the "Runner" target and navigate to the "Signing & Capabilities" tab.

Enable the "Sign in with Apple" capability if it's not already enabled.

Step 3: Firebase initialized in your main function.

Step 4: Implement the sign-in logic

Installation #

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  firebase_sign_in: ^0.0.16
  1. Import the package and use it in your Flutter App.
import 'package:firebase_sign_in/sociallogin.dart';

Usage #

  1. we have to initialized using initialize method.
FirebaseSetup.initialize(types: [SignupType.google,SignupType.apple]);
  1. we need to initialized FirebaseSetup class. and then use signin and signout methods.
  FirebaseSetup firebaseSetup = FirebaseSetup(scopes: ['email']);
  firebaseSetup.signin(type: SignupType.google);
  firebaseSetup.signout(type: SignupType.google);
0
likes
120
pub points
72%
popularity

Publisher

unverified uploader

firebase google sign-in all methods in Flutter package project.

Repository (GitLab)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

firebase_auth, firebase_core, flutter, google_sign_in, google_sign_in_web

More

Packages that depend on firebase_sign_in