what do you guys do to move around with the lazy r...
# compose-desktop
a
what do you guys do to move around with the lazy row or probably any scrollable components in desktop? in android it is quite natural to just swipe to move them well but there's no natural hold and drag to move around with mouse unless probably manually doing it with modifiers
k
Not all touch-first gestures translate well to the desktop world, nor do they need to
3
a
Scroll wheel and scrollbar
5
j
What I do is: determine if I'm in touch mode or mouse mode, and if the latter then put a
androidx.compose.foundation.VerticalScrollbar
in the same
Box
as my
LazyColumn
. It works well and you can adjust
style
to suit (thickness, colors, etc.).