dimsuz
08/09/2022, 1:21 PMBox(modifier = Modifier.draggable()) {
Button(modifier = Modifier.clickable())
}
If I start the drag inside the button, clickable() completely intercepts it, but I want it to behave like this: if drag touch slop is passed, then clickable() should be ignored and drag should be started.
Is there a way to configure this?