root / src / app / browse / browse.component.html @ f3d5fa3b
Historique | Voir | Annoter | Télécharger (901 octets)
1 |
<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="Browse"></Label> |
16 |
</ActionBar>
|
17 |
|
18 |
<GridLayout class="page__content"> |
19 |
<Label class="page__content-icon far" text=""></Label> |
20 |
<Label class="page__content-placeholder" text="<!-- Page content goes here -->"></Label> |
21 |
</GridLayout>
|