Open a-tonchev opened 4 years ago
My workaround:
useEffect(() => {
const cleanClasses = () => {
document.body.className = '';
};
document.addEventListener('touchend', cleanClasses, false);
return () => {
document.removeEventListener('touchend', cleanClasses, false);
};
}, []);
Bug is reproduced in browser and also in mobile:
Open demo page: https://kutlugsahin.github.io/smooth-dnd-demo/ with mobile chrome / or desktop chrome in Device-mode
Scroll with finger and touch the react-smooth-dnd container
-> no more native scrolling possible. You can not scroll top or bottom of the page any more.
If you want guys, I can also upload a video?
Thanks and best regards