Improve accessibility.
This commit is contained in:
parent
cad3b5b8ad
commit
bf52e99295
1 changed files with 4 additions and 1 deletions
|
|
@ -61,11 +61,14 @@ fun SelectedRoom(
|
||||||
modifier: Modifier = Modifier,
|
modifier: Modifier = Modifier,
|
||||||
) {
|
) {
|
||||||
val actionRemove = stringResource(id = CommonStrings.action_remove)
|
val actionRemove = stringResource(id = CommonStrings.action_remove)
|
||||||
|
val a11yRoomName = stringResource(id = CommonStrings.common_room_name)
|
||||||
Box(
|
Box(
|
||||||
modifier = modifier
|
modifier = modifier
|
||||||
.width(AvatarSize.SelectedRoom.dp)
|
.width(AvatarSize.SelectedRoom.dp)
|
||||||
.clearAndSetSemantics {
|
.clearAndSetSemantics {
|
||||||
contentDescription = roomInfo.name ?: "#"
|
contentDescription = roomInfo.name
|
||||||
|
?: roomInfo.canonicalAlias?.value
|
||||||
|
?: a11yRoomName
|
||||||
// Note: this does not set the click effect to the whole Box
|
// Note: this does not set the click effect to the whole Box
|
||||||
// when talkback is not enabled
|
// when talkback is not enabled
|
||||||
onClick(
|
onClick(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue