react-use-draggable-scroll icon indicating copy to clipboard operation
react-use-draggable-scroll copied to clipboard

Drag Scrolling in Mobile

Open Geoff-Fernandez opened this issue 2 years ago • 2 comments

Hello,

Does this hook also supports mobile? If so, how could I enable it?

Thanks in advance.

Geoff-Fernandez avatar Aug 15 '23 07:08 Geoff-Fernandez

I've used this CSS to restore horizontal scrolling on mobile when using this package:

overflow-x: hidden;
  
@media (hover: none) {
  overflow-x: auto;
}

It prevents overflowing by default so react-use-draggable-scroll can do its thing, but for touch devices it allows regular scrollable overflowing.

Not sure if it's the recommended way, but it does the trick for me.

bramchi avatar Jan 10 '24 11:01 bramchi

Appears to work out of the box on mobile for me

weotch avatar Apr 06 '24 23:04 weotch