-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathsecond-over-navigation.component.html
28 lines (27 loc) · 1.53 KB
/
second-over-navigation.component.html
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
<ActionBar title="Inner Page">
<NavigationButton text="Back" icon="res://ic_arrow_back_black_24dp" (tap)="onNavigationButtonTap()"></NavigationButton>
</ActionBar>
<RadSideDrawer showOverNavigation="true">
<StackLayout tkDrawerContent class="sideStackLayout">
<StackLayout class="sideTitleStackLayout">
<Label text="Navigation Menu"></Label>
</StackLayout>
<StackLayout class="sideStackLayout">
<Label text="Primary" class="sideLabel sideLightGrayLabel"></Label>
<Label text="Social" class="sideLabel"></Label>
<Label text="Promotions" class="sideLabel"></Label>
<Label text="Labels" class="sideLabel sideLightGrayLabel"></Label>
<Label text="Important" class="sideLabel"></Label>
<Label text="Starred" class="sideLabel"></Label>
<Label text="Sent Mail" class="sideLabel"></Label>
<Label text="Drafts" class="sideLabel"></Label>
</StackLayout>
<Label text="Go back" (tap)="goBack()" class="mainContentButton drawerContentButton"></Label>
<Label text="Close Drawer" (tap)="onCloseDrawerTap()" class="mainContentButton drawerContentButton"></Label>
</StackLayout>
<StackLayout tkMainContent>
<Label [text]="mainContentText" textWrap="true" class="mainContentText"></Label>
<Button text="OPEN DRAWER" (tap)="openDrawer()" class="mainContentButton"></Button>
<Button text="GO BACK" (tap)="goBack()" class="mainContentButton"></Button>
</StackLayout>
</RadSideDrawer>