-
Notifications
You must be signed in to change notification settings - Fork 28
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
feat: Add accessibility strings to conversation details [WPB-9784] #3495
feat: Add accessibility strings to conversation details [WPB-9784] #3495
Conversation
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.
Looking good, just one todo and maybe some potential improvement 😄
@@ -344,6 +344,7 @@ enum class LoginTabItem(@StringRes val titleResId: Int) : TabItem { | |||
EMAIL(R.string.login_tab_email), | |||
SSO(R.string.login_tab_sso); | |||
override val title: UIText = UIText.StringResource(titleResId) | |||
override val contentDescription: UIText? = null // TODO set contentDescription if needed |
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.
todo
import com.wire.android.ui.home.conversationslist.common.CollapsingFolderHeader | ||
import com.wire.android.ui.home.conversationslist.common.FolderHeader | ||
|
||
@Suppress("LongParameterList") | ||
@Suppress("LongParameterList", "CyclomaticComplexMethod") |
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.
Can we improve it to not having additional suppress?
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## release/candidate #3495 +/- ##
=====================================================
- Coverage 45.32% 45.31% -0.01%
=====================================================
Files 470 470
Lines 15692 15694 +2
Branches 2626 2626
=====================================================
Hits 7112 7112
- Misses 7836 7838 +2
Partials 744 744
Continue to review full report in Codecov by Sentry.
|
Built wire-android-staging-compat-pr-3495.apk is available for download |
Built wire-android-dev-debug-pr-3495.apk is available for download |
…o_conversation_details
Quality Gate passedIssues Measures |
Built wire-android-staging-compat-pr-3495.apk is available for download |
What's new in this PR?
Added accessibility strings to ConversationDetails screen.
This is the first part of work, but it's already to big, one more PR is coming :)