mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 08:17:04 +05:30
android: use an uppercase content description
This commit is contained in:
parent
4d6b97adaf
commit
54bb2c7421
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ fun ClawNavigationBar(
|
|||
NavigationBar(modifier = modifier) {
|
||||
items.forEach { navItem ->
|
||||
NavigationBarItem(
|
||||
icon = { Icon(painter = navItem.icon, contentDescription = navItem.label) },
|
||||
icon = { Icon(painter = navItem.icon, contentDescription = navItem.label.uppercase()) },
|
||||
label = { Text(text = navItem.label) },
|
||||
selected = navController.currentDestination?.route == navItem.route,
|
||||
onClick = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue