When a user scrolls down and comes to the end, and still tries to scroll down, an arc appears. For example, in whatsapp, on message window, you can't scroll down if you are at the end and that arc appears.
How can I do that in cordova mobile app ( android ) using angular.js and ionic?
or What is the name of this property ?
Thanks in advance
ANSWER:
I found the property for ionic framework. This is not what I exactly want, but it shows that there is no more data after the last ion-list item by bouncing the page.
If has-bouncing attribute is added to ion-content, page will bounce. Attribute's value is true by default for IOS, you don't need to add it, but you have to add it for Android.
<ion-content has-bouncing="true">
</ion-content>