forked from nativescript-community/ui-pager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStaticPager.svelte
27 lines (25 loc) · 887 Bytes
/
StaticPager.svelte
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
<script lang="typescript">
import { goBack } from 'svelte-native';
</script>
<page>
<actionBar title="Static Pager">
<navigationButton text="Go back" on:tap={() => goBack()} />
</actionBar>
<gridlayout class="page">
<pager>
<pageritem backgroundColor="#e67e22"><label class="label" text="First" /></pageritem>
<pageritem backgroundColor="#3498db"><label class="label" text="Second" /></pageritem>
<pageritem backgroundColor="#e74c3c"><label class="label" text="Third" /></pageritem>
<pageritem backgroundColor="#9b59b6"><label class="label" text="Fourth" /></pageritem>
</pager>
</gridlayout>
</page>
<style>
.label {
font-size: 35;
horizontal-alignment: center;
vertical-alignment: center;
color: #ffffff;
text-transform: uppercase;
}
</style>