Skip to content

Instantly share code, notes, and snippets.

@justinramel
Created December 24, 2015 14:32
Show Gist options
  • Save justinramel/e09732ab23523d38627f to your computer and use it in GitHub Desktop.
Save justinramel/e09732ab23523d38627f to your computer and use it in GitHub Desktop.
ionic 2 blog series - rates.html ion-item
<ion-item *ngFor="#rate of rates">
<span item-left><h1 secondary>{{rate.direction}}</h1></span>
<h2>{{rate.description}}</h2>
<p>{{rate.amount | currency:'GBP':true:'1.2-2'}} • Every{{rate.days}} Days • {{rate.dailyRate | currency:'GBP':true:'1.2-2'}}</p>
<button clear danger item-right>
<icon trash></icon>
</button>
</ion-item>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment