-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Verification icons dark mode #2580
Conversation
@@ -192,7 +192,6 @@ private fun WireDialogContent( | |||
Text( | |||
text = title, | |||
style = MaterialTheme.wireTypography.title02, | |||
modifier = Modifier.weight(1f) | |||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Caused title ignoring centerContent
Build 2524 failed. |
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## develop #2580 +/- ##
=============================================
+ Coverage 41.39% 41.40% +0.01%
Complexity 1129 1129
=============================================
Files 361 361
Lines 13255 13259 +4
Branches 1742 1743 +1
=============================================
+ Hits 5487 5490 +3
- Misses 7236 7237 +1
Partials 532 532
Continue to review full report in Codecov by Sentry.
|
APKs built during tests are available here. Scroll down to Artifacts! |
Build 2529 succeeded. The build produced the following APK's: |
val iconId = if (isSystemInDarkTheme()) R.drawable.ic_certificate_valid_proteus_dark | ||
else R.drawable.ic_certificate_valid_proteus |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: wouldn't just putting icon for dark theme inside drawable-night
directory work the same but without the need to create these if
s and separate fields for iconResId
and darkIconResId
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dummy mistake 😅
APKs built during tests are available here. Scroll down to Artifacts! |
Build 2562 succeeded. The build produced the following APK's: |
APKs built during tests are available here. Scroll down to Artifacts! |
Build 2576 succeeded. The build produced the following APK's: |
APKs built during tests are available here. Scroll down to Artifacts! |
Build 2585 succeeded. The build produced the following APK's: |
What's new in this PR?
Issues
Verification icons (Proteus and MLS) were not adopted for Dark Mode.
Causes (Optional)
Just wasn't implemented
Solutions
Implement it