Feature Description
I wanna disable scrolling on a ListView but the same goes for ScrollView.
I worked around it by having a conditionally-visible TouchArea that covers the ListView and eats scroll events with
scroll-event(ev) => {
return accept;
}
but that feels hacky
Product Impact
- building a reverse engineering app which lists code
- need to disable scrolling on the code listing when things are happening in the background
- just a nice-to-have, it's easy to work around