Is there a way to disable focus and/or pointer events on a whole Composable tree? Or do I have to pass an
enabled
property all the way down the tree and manually implement this?
e.g. something like
Copy code
Column(disableAllInteractions = true) {
MyClickableItem(Modifier.onClick {}) // should receive no click events
BasicTextField(onValueChange = {}) // should not be focusable, even with keyboard tabbing
//...
}
rob42
06/10/2024, 2:01 PM
This gets most of the way there, but hover events are still detected.