-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathhome.html
More file actions
40 lines (39 loc) · 1 KB
/
home.html
File metadata and controls
40 lines (39 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<ActionBar title="NativeFlix"></ActionBar>
<ListView
height="100%"
separatorColor="transparent"
[items]="flickService.getFlicks()"
(itemTap)="onFlickTap($event)"
(itemLoading)="onItemLoading($event)"
>
<ng-template let-item="item">
<!-- The item template can only have a single root view container (e.g. GridLayout, StackLayout, etc.)-->
<GridLayout
height="280"
borderRadius="10"
class="bg-secondary"
rows="*, auto, auto"
columns="*"
margin="12 10 0 10"
padding="0"
>
<image row="0" margin="0" stretch="aspectFill" [src]="item.image"></image>
<label
row="1"
margin="10 10 0 10"
fontWeight="700"
class="text-primary"
fontSize="18"
[text]="item.title"
></label>
<label
row="2"
margin="0 10 10 10"
class="text-secondary"
fontSize="14"
textWrap="true"
[text]="item.description"
></label>
</GridLayout>
</ng-template>
</ListView>