Trigger on scroll end for ScrollView

How do I figure out if a ScrollView has stopped scrolling?

I would prefer using a trigger. The purpose is to perform some cleanup that I can’t do on the fly because the scroll motion gets janky.

Unfortunately you can’t determine this at the moment. I’ve added a feature request for something like WhileScrolling.

You could I suppose add a handler for ScrollPositionChanged and just wait until it hasn’t triggered in a while. You can do the same thing by data-binding to the ScrollPosition value and using an .onValueChanged handler. This is of course not that pleasant of a solution, but it might work.