https://kotlinlang.org logo
d

dimsuz

08/09/2022, 1:21 PM
I have a
Copy code
Box(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?