Skip to content

Instantly share code, notes, and snippets.

@jonvargas
Created May 16, 2016 02:30
Show Gist options
  • Save jonvargas/b462bd20370fa010c2068913ef36ac46 to your computer and use it in GitHub Desktop.
Save jonvargas/b462bd20370fa010c2068913ef36ac46 to your computer and use it in GitHub Desktop.
<ion-menu [content]="content">
<ion-toolbar>
<ion-title>Menu</ion-title>
</ion-toolbar>
<ion-content>
<ion-list>
<ion-list-header>
Navigate
</ion-list-header>
<button ion-item menuClose *ngFor="#p of menuPages" (click)="openPage(p)">
<ion-icon item-left [name]="p.icon"></ion-icon>
{{p.title}}
</button>
</ion-list>
</ion-content>
</ion-menu>
<ion-nav [root]="rootPage" #content swipe-back-enabled="false"></ion-nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment