react-use-draggable-scroll
react-use-draggable-scroll copied to clipboard
Drag Scrolling in Mobile
Hello,
Does this hook also supports mobile? If so, how could I enable it?
Thanks in advance.
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.
Appears to work out of the box on mobile for me