Closed
Description
I found an example inside the repo how to cutomize itemTemplate but it doesn't work for me.
<PickerField hint="Click here"
[items]="countries"
[modalAnimated]="true"
[pickerTitle]="'Choose country'">
<ng-template let-item="item" let-i="index">
<StackLayout class="p-10" orientation="horizontal">
<Label [text]="i"></Label>
<Label [text]="item"></Label>
</StackLayout>
</ng-template>
</PickerField>
Nothing changes inside the list.
I'm trying to implement it on Android platform Google Pixel XL real device.
Can someone help me and tell what am I doing wrong?