I need to detect if the scrollview has reached the bottom when the user scrolls down so i can load more data in tho it? How can i do this the best way? i have tried:
scrollView.addEventListener("scrollend", function(e){
b = 10;
AddList();
});
But i't does not solve my problem because it loads data into the scroll when the scrollview stops scrolling and only works in IOS and i need it to work also in android.
I'm not using the alloy folder