fix(ui_auth): make light text on _EmailVerificationBadge legible
Description
- Reduced the opacity of the badge's background to make light text in a dark theme more legible
- Dark text in a light theme is still legible
- The reduced opacity also makes the color more appealing
Related Issues
This PR resolves issue #18
Checklist
Before you create this PR confirm that it meets all requirements listed below by checking the relevant checkboxes ([x]).
This will ensure a smooth and quick review process. Updating the pubspec.yaml and changelogs is not required.
- [x] I read the Contributor Guide and followed the process outlined there for submitting PRs.
- [x] My PR includes unit or integration tests for all changed/updated/fixed behaviors (See Contributor Guide).
- [x] All existing and new tests are passing.
- [x] I updated/added relevant documentation (doc comments with
///). - [x] The analyzer (
melos run analyze) does not report any problems on my PR. - [x] All unit tests pass (
melos run test:unit:alldoesn't fail). - [x] I read and followed the Flutter Style Guide.
- [x] I signed the CLA.
- [x] I am willing to follow-up on review comments in a timely manner.
Breaking Change
Does your PR require plugin users to manually update their apps to accommodate your change?
- [ ] Yes, this is a breaking change.
- [x] No, this is not a breaking change.
I think it could be better to expose this color through a dedicated parameter. In fact, it could be good to have the possibility to override every UI widget of this package to custom them as close as client app current design. It could be really fantastic to be able to have the hand on every things :/ !
@EArminjon For this PR, do you think I should allow the client to override the whole decoration property of the Container or only the color property of the BoxDecoration?
I'm not a maintainer, it's just a global question around this package and maybe the real fix behind this needs.
it could be good to have the possibility to override every UI widget of this package to custom them as close as client app current design.
Styling API is in place and contributions on making anything configurable are welcome.
In general, here's how styling should be taken care of:
- extend FirebaseUIStyle
- override
applyToMaterialThemeorapplyToCupertinoThemeif necessary (see this example) - define a property on a relevant widget (like here)
- define
Set<FirebaseUIStyle> styleson a screen level (like here) - use
FirebaseUIStyle.ofType<T extends FirebaseUIStyle>(like here) to get a relevant style object from build context
In this specific issue, we could create an EmailVerificationBadgeStyle object and have a configurable backgroundColor defined there.
@qwezey would you be willing to update your PR accordingly?
Hey @qwezey - will you be following up on this PR?
@lesnitsky @russellwheatley Can we proceed with merging this PR? It is a bug fix but requests to incorporate non-critical enhancements seem to be stalling it. We are at a 0 currently and this change seems like it would get us to a 1, so it seems prudent to keep any enhancements to get to a 2 separate from this.
@cmjordan42 - that's a fair point, I'd rather have an improvement at this moment in time rather than wait for an incoming PR with a more robust solution.
Many thanks, @russellwheatley