Skip to content

Instantly share code, notes, and snippets.

@vaibhavgehani
Last active March 17, 2021 04:36
<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