-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathover-navigation.component.html
26 lines (26 loc) · 1.53 KB
/
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
<!-- >> angular-sidedrawer-over-navigation-html -->
<RadSideDrawer showOverNavigation="true" tkExampleTitle tkToggleNavButton>
<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 to next page" (tap)="goToSecondPage()" 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 TO NEXT PAGE" (tap)="goToSecondPage()" class="mainContentButton"></Button>
</StackLayout>
</RadSideDrawer>
<!-- << angular-sidedrawer-over-navigation-html -->