forked from nativescript-community/ui-pager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBasicPager.vue
46 lines (41 loc) · 1.07 KB
/
BasicPager.vue
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
41
42
43
44
45
46
<template>
<Page>
<ActionBar>
<NavigationButton text="Back" android.systemIcon="ic_menu_back" @tap="$navigateBack" />
<Label text="Basic Pager" />
</ActionBar>
<StackLayout class="page">
<Pager for="item in items" height="100%">
<v-template>
<GridLayout :backgroundColor="item.color">
<Label :text="item.title" />
</GridLayout>
</v-template>
</Pager>
</StackLayout>
</Page>
</template>
<script>
export default {
data() {
return {
items: [
{title: "First", color: "#e67e22"},
{title: "Second", color: "#3498db"},
{title: "Third", color: "#e74c3c"},
{title: "Fourth", color: "#9b59b6"},
]
}
}
};
</script>
<style lang="scss" scoped>
.page Label {
font-size: 35;
text-align: center;
width: 100%;
vertical-alignment: center;
color: #ffffff;
text-transform: uppercase;
}
</style>