so i'm developing a desktop application using compose desktop and I need to detect horizontal scroll.
here is what I tried already:
.onPointerEvent(PointerEventType.Scroll) { println(it.changes.first().scrollDelta)}
the problem is i can only get vertical scrolls! how can I detect horizontal scroll event?
by the way by horizontal scroll I mean scrolling with touchpad