I have listview which has a story with around 50-60 rows. I want to slowly scroll listview automatically.
So that user can continue to read without manually scrolling.
I am not looking for infinite scroll. I am looking for automatic scroll where listview keeps on scrolling one item at a time by itself. Not requiring user to interact.
Answers
I think you can try to use ListView.ScrollTo to achieve this.
We can scroll to the last one item.
For example:
You can refer to this article: Infinite Scrolling ListView For Xamarin.Forms App Using Behaviors
which uses Behaviors to achieve this function.
The main code is
Hi, use 'looping'
pseudo-code
a=0
looping a < 60 or "ListView.length"
{
scrollto....
Task.Delay(3);
a++;
}