Peter Mandeljc
07/13/2021, 6:22 PMColumn(modifier = Modifier.clickable { Timber.d("click") }) {
TextField(value = "smth", onValueChange = {})
}Tash
07/13/2021, 11:45 PMTextField will consume focus/taps because it internally uses textFieldFocusModifier which relies on the enabled boolean you pass to `TextField`…in this case TextField enabled will have to be set to false to enable a parent to intercept