UNPKG

@nativescript/template-hello-world-ng

Version:
12 lines (10 loc) 332 B
<ActionBar title="My App"> </ActionBar> <GridLayout> <ListView [items]="itemService.items()"> <ng-template let-item="item"> <StackLayout [nsRouterLink]="['/item', item.id]"> <Label [text]="item.name" class="text-lg text-gray-500 p-4"></Label> </StackLayout> </ng-template> </ListView> </GridLayout>