Last active
April 6, 2018 17:45
-
-
Save raphaelluiz128/afa51ea10528be1dbd33d1de2b54add6 to your computer and use it in GitHub Desktop.
tela home json externo
This file contains 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> | |
<h3>Ionic Menu Starter</h3> | |
<button ion-button block (click)="AtualizarMedicoes()">atualizar medicao</button> | |
<button ion-button block (click)="GetAllMedicoes()">Ver medicao</button> | |
<ion-list> | |
<button ion-item *ngFor="let med of this.database.arrayMedicoes"> | |
{{med.DATA}},{{med.HORA}},{{med.NIVEL}} | |
</button> | |
</ion-list> | |
</ion-content> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment