i've read through the Nativescript ListView documentation and searched Google and can't find any way to highlight the currently selected item of a Listview... Is this even possible? If so how can I go about it?
My code:
<ListView [items]="activeStockTakes" class="list-group" (itemTap)="selectActiveStockTake($event)">
<template let-activeStockTake="item">
<StackLayout>
<Label class="list-group-item" [text]="activeStockTake.UserCode + ' - ' + activeStockTake.Comment"></Label>
</StackLayout>
</template>
</ListView>