Created
November 7, 2017 23:38
-
-
Save gustavopinho/e8b6a391d2003f5970e996b62ea519a1 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> | |
| <ion-title>Tarefas Finalizadas</ion-title> | |
| </ion-navbar> | |
| </ion-header> | |
| <ion-content padding> | |
| <ion-item *ngFor="let tarefa of tarefas | async"> | |
| {{ tarefa.nome }} | |
| <button clear="" ion-button item-end icon-left color="danger" (click)="excluir(tarefa.id)"> | |
| <ion-icon name="trash"></ion-icon> | |
| </button> | |
| </ion-item> | |
| </ion-content> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment