Now, v-ripple displays the ripple effect when a mobile user scrolls.
material-ui doesn't display the ripple for touch scroll events.
material-ui PR: https://github.com/mui-org/material-ui/pull/8605/files
I'm also looking for this functionality!
Yes. Pretty please, can we get this?
Can we merge this please? it is an important fix.
This is indeed a pretty important fix. Can this be fixed/merged please?
Any update on this?
Please merge this. It is very important for mobile devices. @johnleider
As temporary workaround it can be done with something like this
CSS
.hide-ripple .v-ripple__container { display: none }
JS
window.addEventListener('touchmove', function() { document.body.classList.add('hide-ripple') }, { passive: true });
window.addEventListener('touchend', function() { setTimeout(function(){ document.body.classList.remove('hide-ripple') }, 50); });
Still waiting on this one guys 鈾ワ笍
resolved with #10596
Most helpful comment
Any update on this?