case-pet-detail.page.html 258 B

12345678910111213
  1. <ion-header [translucent]="true">
  2. <ion-toolbar>
  3. <ion-title>{{pet?.get("name")}}</ion-title>
  4. </ion-toolbar>
  5. </ion-header>
  6. <ion-content [fullscreen]="true">
  7. <ion-card>
  8. {{pet?.get("type")}}
  9. {{pet?.get("price")}}
  10. </ion-card>
  11. </ion-content>