@nativescript/template-hello-world-ng
Version:
NativeScript Angular Hello World template
12 lines (10 loc) • 332 B
HTML
<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>