koji-1009 / flutter_auth_ui

A Flutter plugin for using the Firebase Auth UI with Dart in Flutter apps. (not official plugin.)
https://pub.dev/packages/flutter_auth_ui
36 stars 10 forks source link

How can I customize view for web version? #82

Closed KeisukeNagakawa closed 2 years ago

KeisukeNagakawa commented 2 years ago

Hi, first of all, thank you for making this great library.

When I press "start ui" button, this library navigates to white & simple new page. I want to customize its view(color or location of the signin method list, etc), but I couldn't understand the proper way of doing that.

Is there a proper way of customizing the attatched page's view for web version? Thanks!

スクリーンショット 2022-01-03 11 11 45
koji-1009 commented 2 years ago

Hi @KeisukeNagakawa,

Sorry, but flutter_auth_ui_web does not support customization. To be customizable, it needs to be written in Dart, but flutter_auth_ui_web just calls a JS library.


On the other hand, there is a library that the firebase team implemented in Dart. I think the library is what you are expecting. https://firebase.flutter.dev/docs/ui/overview/

KeisukeNagakawa commented 2 years ago

Thank you!