Is there any API available for listening to gestur...
# compose-desktop
c
Is there any API available for listening to gestures? Specifically I’m looking to listen for clicking and dragging over a list of items
z
All the regular gesture apis should work for at least basic mouse ones as well
So
Modifier.draggable
as well as the lower-level input modifiers (
pointerInput
and I think
mouseInput
)
c
Thanks 🙂