root / src / app / featured / featured.component.html @ 2c8d373c
Historique | Voir | Annoter | Télécharger (903 octets)
1 | f3d5fa3b | Eric Seigne | <ActionBar>
|
---|---|---|---|
2 | <!--
|
||
3 | Use the NavigationButton as a side-drawer button in Android
|
||
4 | because ActionItems are shown on the right side of the ActionBar
|
||
5 | -->
|
||
6 | <NavigationButton ios:visibility="collapsed" icon="res://menu" (tap)="onDrawerButtonTap()"></NavigationButton> |
||
7 | <!--
|
||
8 | Use the ActionItem for IOS with position set to left. Using the
|
||
9 | NavigationButton as a side-drawer button in iOS is not possible,
|
||
10 | because its function is to always navigate back in the application.
|
||
11 | -->
|
||
12 | <ActionItem icon="res://menu" android:visibility="collapsed" (tap)="onDrawerButtonTap()" |
||
13 | ios.position="left"> |
||
14 | </ActionItem>
|
||
15 | <Label text="Featured"></Label> |
||
16 | </ActionBar>
|
||
17 | |||
18 | <GridLayout class="page__content"> |
||
19 | <Label class="page__content-icon fas" text=""></Label> |
||
20 | <Label class="page__content-placeholder" text="<!-- Page content goes here -->"></Label> |
||
21 | </GridLayout> |