You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a page with horizontal containers, that scroll horizontally.
The issue appears on Android phones, in Chrome: the page as a whole is not scrollable anymore, unless I initiate the gesture from an area that does not have the horizontal scroll on it.
This issue doesn't occur on iOS.
I've tested without any settings. (implicitly horizontal is set to true)
So I'm looking for a way to let the users scroll the page vertically no matter where they initiate the gesture from (as it happens on iOS)
The horizontal container (without stopping the event propagation, or any other settings) prevents this from working.
Ideally I'd like to have these settings for the horizontal containers (cause these work best for desktop scenarios)
swapWheelAxes={true}
stopScrollPropagation={true}
I'm guessing that the "stopScrollPropagation" might cause an issue. Maybe have a way of allowing the vertical scroll on touch devices.
The text was updated successfully, but these errors were encountered:
Hi! I found the style touch-action: none in class scrollarea-content disable scroll in mobile. So, the temp solution will be: specify your own contentClassName overwrite with touch-action: auto.
I am not sure whether it will affect other styles.
I have a page with horizontal containers, that scroll horizontally.
The issue appears on Android phones, in Chrome: the page as a whole is not scrollable anymore, unless I initiate the gesture from an area that does not have the horizontal scroll on it.
This issue doesn't occur on iOS.
I've tested without any settings. (implicitly horizontal is set to true)
So I'm looking for a way to let the users scroll the page vertically no matter where they initiate the gesture from (as it happens on iOS)
The horizontal container (without stopping the event propagation, or any other settings) prevents this from working.
Ideally I'd like to have these settings for the horizontal containers (cause these work best for desktop scenarios)
swapWheelAxes={true}
stopScrollPropagation={true}
I'm guessing that the "stopScrollPropagation" might cause an issue. Maybe have a way of allowing the vertical scroll on touch devices.
The text was updated successfully, but these errors were encountered: