Last active
March 17, 2021 04:36
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-toolbar> | |
<ion-title>Contacts</ion-title> | |
</ion-toolbar> | |
</ion-header> | |
<ion-content> | |
<ion-list> | |
<ion-item *ngFor="let contact of contactService.localContact"> | |
<ion-thumbnail slot="start"> | |
<img [src]="contact.contact_photo"/> | |
</ion-thumbnail> | |
<ion-label> | |
<div> | |
<h2>{{contact.contact_name}}</h2> | |
</div> | |
<p *ngIf="contact.contact_email">{{contact.contact_email}}</p> | |
<p *ngIf="contact.contact_number">{{contact.contact_number}}</p> | |
</ion-label> | |
</ion-item> | |
</ion-list> | |
</ion-content> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment