-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathdetails-page.xml
More file actions
31 lines (31 loc) · 1.04 KB
/
details-page.xml
File metadata and controls
31 lines (31 loc) · 1.04 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
<Page xmlns="http://schemas.nativescript.org/tns.xsd" navigatingTo="navigatingTo">
<ActionBar title="{{ flick.title }}"/>
<ScrollView>
<StackLayout>
<Image
margin="0"
stretch="aspectFill"
src="{{ flick.image }}"></Image>
<StackLayout padding="10 20">
<Repeater items="{{ flick.details }}">
<Repeater.itemTemplate>
<StackLayout>
<Label
marginTop="15"
fontSize="16"
fontWeight="700"
class="text-primary"
textWrap="true"
text="{{ $value.title }}"></Label>
<Label
fontSize="14"
class="text-secondary"
textWrap="true"
text="{{ $value.body }}"></Label>
</StackLayout>
</Repeater.itemTemplate>
</Repeater>
</StackLayout>
</StackLayout>
</ScrollView>
</Page>