unspected behaviour
i am using the VirtualScroll from the offical documentation.
my list contains most than 4 elements. but it will show up only 4 elements.
this is my code
<ion-col>
<ion-grid>
<ion-list [virtualScroll]="person">
<ion-item *virtualItem="let p">
{{p.name}}
</ion-item>
</ion-list>
</ion-grid>
</ion-col>
this is the result :
Standard List:
what i can do to improve my Virtual Scrolling List