'How can I make composables unclickable preferrably by its Modifier?

Is there a possibility to prohibit clickability? Not implementing the onClick interface might be one step. I also want to prevent the colored highlighting when tapping on it.

I've already tried Modifier.clickable(enabled = false, onClick = {}), but it still flashes when tapping on it.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source