How can I adjust the hover on NavigationRailItem?
I changed the item to 150dp width, but I did not found a way to adjust the hover effect, or change it to apply the color on the icon and label on hover.
It's too big for the item.
On the image the mouse is over notification.
This is my code for NavigationRailItem
NavigationRailItem(
selected = currentScreen == it.name,
icon = {
Icon(
imageVector = it.icon,
contentDescription = it.label
)
},
label = {
Text(it.label)
},
alwaysShowLabel = true,
onClick = {
navController.navigate(it.name)
},
modifier = Modifier.width(Dp(200f))
)