Skip to content

Commit d183d87

Browse files
fix(auth): using theme color instead of hardcoded value (#416)
Co-authored-by: Russell Wheatley <[email protected]>
1 parent 72530e5 commit d183d87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: packages/firebase_ui_auth/lib/src/screens/profile_screen.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ class _EmailVerificationBadgeState extends State<_EmailVerificationBadge> {
387387
children: [
388388
Container(
389389
decoration: BoxDecoration(
390-
color: Colors.yellow.withOpacity(0.5),
390+
color: Theme.of(context).colorScheme.surface,
391391
borderRadius: BorderRadius.circular(12),
392392
),
393393
child: Padding(

0 commit comments

Comments
 (0)