Last active
September 26, 2016 15:00
-
-
Save saniyusuf/7b24a2d2e2168080d711df96ef06f2c4 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-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