Hi,
So I have an array of items, upto 2000 items which I want to display.
I was using *ngfor to loop through but the performance was shocking.
So I read that virtualScroll was the solution.
<ion-list [virtualScroll]="results">
<button ion-item *virtualItem="let result" (click)="goToClient(result)">
{{result.FirstName}} {{result.LastName}}
</button>
</ion-list>
However when loading it appears to scroll ok for the first 20 lines, then jumps around and then the hole app crashes.
Any Ideas on how to resolve this?