I have 100 items in a list like this. I would like to know which items of those 100 items is visible on screen, but seem ion-list doesn't provide that method. How can I achieve it?
<ion-list>
<button ion-item *ngFor="let item of items" (click)="itemSelected(item)">
{{ item }}
</button>
</ion-list>