Created
July 23, 2018 21:19
-
-
Save NandoKstroNet/24ec0fa4266a94408aa718ba4fd691e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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