I am making a UWP app. I have a ListView bound to an ObservableCollection. I want to find out when the end of ListView is reached. Once the end of ListView is reached, I have to make an API call to add more data to the List.
By end of ListView I mean that user has scrolled all the way down and I have to make a api call to get more data into the listview so that the user can scroll further.
How do I find out when the user has scrolled all the way down?