Why does adding a .combinedClickable() to the modifier of a Button not do anything? The onClick will do something, but I'd expect the modifier.combinedClickable() to override the onClick behavior.
Button(
onClick = { // does something },
modifier = Modifier
...
.combinedClickable(
enabled = true,
onLongClick = { // does something else },
onClick = { // also does something else }
), ... ) { ... }
Even if I duplicate the Button functionality, I don't have access to all the internal classes that are in the material3 scope, and I much rather use those internals rather than create my own.