flutter:
# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true
# To add assets to your application, add an assets section, like this:
assets:
- images/
# - images/a_dot_ham.jpeg
fonts:
- family: SocialIcons
fonts:
- asset: packages/firebase_ui_auth/fonts/SocialIcons.ttf
Expected Behavior
To see something resembling a Google logo in the "Sign-in methods" section
Actual Behavior
Additional Information
This is my first flutter app, so most likely I have a mistake somewhere. I am not sure if I missed something in the documentation, or it's not documented because it's "obvious" (for everyone familiar with flutter).
never mind, now it started working - no idea which cache or similar had to be cleared, since I tried it even on 2 different machines, with the aforementioned results.
Is there an existing issue for this?
What plugin is this bug for?
Firebase UI Auth
What platform(s) does this bug affect?
Web
List of dependencies used.
flutter pub deps -s list
Steps to reproduce
I tried to follow the example in https://pub.dev/packages/firebase_ui_auth/example this is my ProfileScreen route:
I configured the providers in the main function:
I also tried to provide the font information:
Expected Behavior
To see something resembling a Google logo in the "Sign-in methods" section
Actual Behavior
Additional Information
This is my first flutter app, so most likely I have a mistake somewhere. I am not sure if I missed something in the documentation, or it's not documented because it's "obvious" (for everyone familiar with flutter).
I found https://github.com/firebase/FirebaseUI-Flutter/issues/228 which pointed to including fonts in
pubspec.yaml
, which I did, but the issue seems to persist.