android: use an uppercase content description

This commit is contained in:
Harsh Shandilya 2022-06-21 11:09:17 +05:30
parent 4d6b97adaf
commit 54bb2c7421
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80

View file

@ -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 = {