Hi! I have a ListView with items that appears after http request:
<ListView *ngIf="!error" [items]="visibleTrips" [class.visible]="listLoaded">
<ng-template let-item="item">
<StackLayout class="card-wrapper">
...
</StackLayout>
</ng-template>
</ListView>
What I actually need is to add shadow for each item. But shadows have to be set for every platform in different way. I need to get native StackLayout element for each item in the list once it appears/ How can I get all list items native components?