mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-15 07:37:03 +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) {
|
NavigationBar(modifier = modifier) {
|
||||||
items.forEach { navItem ->
|
items.forEach { navItem ->
|
||||||
NavigationBarItem(
|
NavigationBarItem(
|
||||||
icon = { Icon(painter = navItem.icon, contentDescription = navItem.label) },
|
icon = { Icon(painter = navItem.icon, contentDescription = navItem.label.uppercase()) },
|
||||||
label = { Text(text = navItem.label) },
|
label = { Text(text = navItem.label) },
|
||||||
selected = navController.currentDestination?.route == navItem.route,
|
selected = navController.currentDestination?.route == navItem.route,
|
||||||
onClick = {
|
onClick = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue