Daniele B
04/02/2024, 10:43 AMText(
modifier = Modifier.clickable { eventFunction() },
text = "my text",
)Nikolas Guillen Leon
04/02/2024, 10:54 AMModifier.clickable(
enabled = true,
interactionSource = remember { MutableInteractionSource() },
indication = null,
onClick = eventFunction
)Nikolas Guillen Leon
04/02/2024, 10:55 AMDaniele B
04/02/2024, 11:04 AMindication = null, without the interactionSource, and it didn't work.
I can see it works only if you add the interaction source. Thanks!mohamed rejeb
04/02/2024, 11:22 AMDaniele B
04/02/2024, 11:25 AM