FirebaseUI-Flutter icon indicating copy to clipboard operation
FirebaseUI-Flutter copied to clipboard

fix(ui_auth): make light text on _EmailVerificationBadge legible

Open qwezey opened this issue 2 years ago • 6 comments

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:all doesn'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.

qwezey avatar Nov 27 '23 16:11 qwezey

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 avatar Nov 28 '23 10:11 EArminjon

@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?

qwezey avatar Nov 28 '23 12:11 qwezey

I'm not a maintainer, it's just a global question around this package and maybe the real fix behind this needs.

EArminjon avatar Nov 28 '23 13:11 EArminjon

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 applyToMaterialTheme or applyToCupertinoTheme if necessary (see this example)
  • define a property on a relevant widget (like here)
  • define Set<FirebaseUIStyle> styles on 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?

lesnitsky avatar Nov 29 '23 18:11 lesnitsky

Hey @qwezey - will you be following up on this PR?

russellwheatley avatar Apr 12 '24 07:04 russellwheatley

@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 avatar Apr 24 '24 21:04 cmjordan42

@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.

russellwheatley avatar Oct 28 '24 10:10 russellwheatley

Many thanks, @russellwheatley

cmjordan42 avatar Oct 28 '24 23:10 cmjordan42