We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b099289 + a1601f6 commit 516aebeCopy full SHA for 516aebe
1 file changed
src/app/app.html
@@ -1 +1,18 @@
1
-<ion-nav [root]="rootPage"></ion-nav>
+<ion-menu [content]="content">
2
+ <ion-header>
3
+ <ion-toolbar>
4
+ <ion-title>Menu</ion-title>
5
+ </ion-toolbar>
6
+ </ion-header>
7
+
8
+ <ion-content>
9
+ <ion-list>
10
+ <button menuClose ion-item *ngFor="let p of pages" (click)="openPage(p)">
11
+ {{p.title}}
12
+ </button>
13
+ </ion-list>
14
+ </ion-content>
15
16
+</ion-menu>
17
18
+<ion-nav [root]="rootPage" #content swipeBackEnabled="false"></ion-nav>
0 commit comments