Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created July 23, 2018 21:19
Show Gist options
  • Save NandoKstroNet/24ec0fa4266a94408aa718ba4fd691e8 to your computer and use it in GitHub Desktop.
Save NandoKstroNet/24ec0fa4266a94408aa718ba4fd691e8 to your computer and use it in GitHub Desktop.
<ion-header>
<ion-navbar>
<button ion-button menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
<ion-title>Home</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<ion-list>
<button ion-item *ngFor="let c of courses|async" (click)="goToSingle(c.key)">
{{c.title}} - {{c.price|currency:"BRL"}}
</button>
</ion-list>
<button ion-button secondary (click)="add()">Adicionar Curso</button>
</ion-content>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment