dagomni
05/07/2020, 2:26 PMBottomNavigationItem(
modifier = Modifier.fillMaxWidth()
+ Modifier.ripple(enabled = false),
alwaysShowLabels = true,
icon = { Icon(vectorResource(item.first)) },
text = { Text(stringResource(item.second)) } },
selected = selectedItem == item,
onSelected = {
println("println statement that is not getting called")
}
)
Louis Pullen-Freilich [G]
05/07/2020, 2:29 PMModifier.ripple
from there?dagomni
05/07/2020, 2:32 PMLouis Pullen-Freilich [G]
05/07/2020, 2:32 PMripple
is intercepting touch events from the BottomNavigationItem
, so it won't even see the touch eventsLouis Pullen-Freilich [G]
05/07/2020, 2:32 PM