Implement neverending scroll

Hi,

I tried to implement endless scrolling via this hack:

<ScrollingAnimation>
    <Callback Handler="{addItems}" AtProgress="0.99"/>
</ScrollAnimation>

which works, but as the list gets longer, the last 1% gets fairly big, so you need to scroll back up again and then scroll down. Is there another way?

I thought of dynamicly removing items from the Observable so the ScrollView isn’t too long.

Hey!

You should check out this article :slight_smile: http://creativitykills.co/how-to-add-infinite-scrolling-to-fuse-app/

Nice, did the trick! Thanks!