Flutter on Windows: Firebase Authentication - flutter

I am trying to use Google Sign In authentication method on my flutter Windows app through firebase. The problem is, that I can't find any configuration file about it in firebase console (like on Android: google-services.json, or iOS: google-services.plist). Does anyone know a way to figure this out? To provide authentication into an Flutter Windows app with Google Sign In method?

Related

Flutter how to implement a Phone Authentication using firebase and getx?

I am new to flutter and want to add phone authentication using firebase and getx but couldn't find any tutorial that would work.
Please help me out!

How to implement the new firebase SMS multi-factor authentication in a Flutter Web App?

I would like to implement the new feature in my Flutter web app, but I am not sure how.
Is there maybe a way to make it work with flutterfire? https://firebase.flutter.dev/docs/auth/phone#web-signinwithphonenumber
Thanks

How to integrate Google Authenticator app to Flutter app?

Does anyone did that before. I need to use Google authenticator for 2FA in my app. There is nothing about that on internet

Flutter ios Google Authentification without firebase error

I'm trying to set up my app without firebase services, but I've faced the issue with Google Authentification. The error message is following: Runner[9138:3105633] [VERBOSE-2:ui_dart_state.cc(199)] Unhandled Exception: PlatformException(missing-config, GoogleService-Info.plist file not found, null, null)
Is it possible to use Google auth without the firebase?
Thanks!
No! There is no way to use Google auth without the firebase, you must integrated your app with firebase.

Login app using fingerprint instead of password

I am working on Flutter login screen but I want to register app using a fingerprint instead of the password. We have local_auth in Flutter but that is fore unlocking app using a fingerprint or touch id. What are the available methods to do that?
What you can do is to refer the plugin local_auth available on Pub and authenticate with local authentication. It is the fastest way to handle it. The package is maintained by the official flutter team, so no need to worry about the updates.
Check the repository and examples here:
https://github.com/flutter/plugins/tree/master/packages/local_auth
Thanks.