BottomNavigationBar() can only take the background
and contentColor
but there is no option for tint color.
If you want to change the tint color of the image then you can use below code
Image(painter = painterResource(R.drawable.ic_arrow_details), contentDescription = "", colorFilter = ColorFilter.tint(Color.Black))
You can use colorFilter properties in Image