fix(android): make nav content description less shouty

This commit is contained in:
Harsh Shandilya 2023-05-05 20:42:27 +05:30
parent 15b1e68611
commit a7c81a77f2
No known key found for this signature in database

View file

@ -58,7 +58,7 @@ fun ClawNavigationBar(
Crossfade(isCurrentDestination, label = "nav-label") {
Icon(
painter = if (it) navItem.selectedIcon else navItem.icon,
contentDescription = navItem.label.uppercase()
contentDescription = navItem.label.replaceFirstChar(Char::uppercase),
)
}
},