Saturday, May 27, 2017

Flutter - Wire up the Google Sign In Plugin for iOS

This video covers:

- Create a firebase app
- Install the GoogleServices-Info.plist
- Import the Google sign-in plugin
- Wire up the sign in

Firebase Console:
https://console.firebase.google.com/u/0/

Pub Google Sign In - Get the dependency
https://pub.dartlang.org/packages/google_sign_in

Google Sign In Plugin Source
https://github.com/flutter/plugins/tree/master/packages/google_sign_in

Google Sign In Plugin Example
https://github.com/flutter/plugins/tree/master/packages/google_sign_in/example

Google Sign In Plugin Example IOS Runner(App), Here's the info.plist
https://github.com/flutter/plugins/tree/master/packages/google_sign_in/example/ios/Runner



No comments:

Trying out the Dart Analysis Server

I wanted to see how the Dart Analysis Server was put together and worked. I started looking to see how I could wire it up and try out the co...