-
-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathhome.component.html
17 lines (15 loc) · 964 Bytes
/
home.component.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<ActionBar class="action-bar">
<Label class="action-bar-title" text="Home Component"></Label>
</ActionBar>
<WrapLayout>
<Button text="Show Modal Without Frame" (tap)="onModalNoFrame()"></Button>
<Button text="Show Modal Page With Frame" (tap)="onModalFrame()"></Button>
<Button text="Navigate To Second Page" (tap)="onNavigateSecond()"></Button>
<Button text="Reset Named Frame Root View" (tap)="onNamedFrameRootViewReset()"></Button>
<Button text="Reset Frame Root View" (tap)="onFrameRootViewReset()"></Button>
<Button text="Reset Tab Root View" (tap)="onTabRootViewReset()"></Button>
<Button text="Reset Layout Root View" (tap)="onLayoutRootViewReset()"></Button>
<Button text="Show Dialog" (tap)="onShowDialog()"></Button>
<Button text="show shared modal" (tap)="onRootModalTap()"></Button>
<Button text="go to second (to open shared modal)" [nsRouterLink]="['/modal-shared-second-host']"></Button>
</WrapLayout>