Skip to content

Instantly share code, notes, and snippets.

@saniyusuf
Last active September 26, 2016 15:00
Show Gist options
  • Save saniyusuf/7b24a2d2e2168080d711df96ef06f2c4 to your computer and use it in GitHub Desktop.
Save saniyusuf/7b24a2d2e2168080d711df96ef06f2c4 to your computer and use it in GitHub Desktop.
<ion-card *ngFor="let track of tracks">
<img [src]="track.album.images[0].url"/>
<ion-card-content>
<ion-card-title>
{{track.name}}
</ion-card-title>
<ion-row>
<ion-col center>
<ion-icon primary name="musical-notes">
</ion-icon>
<span primary>Listen</span>
</ion-col>
<ion-col text-right="">
<ion-icon primary name="share-alt">
</ion-icon>
<span primary>Share</span>
</ion-col>
</ion-row>
</ion-card-content>
</ion-card>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment