tab1.page.html 412 B

1234567891011121314151617
  1. <ion-header>
  2. <ion-toolbar>
  3. <ion-title>
  4. Photos
  5. </ion-title>
  6. </ion-toolbar>
  7. </ion-header>
  8. <ion-content>
  9. <ion-searchbar (ionInput)="onSearch($event)"></ion-searchbar>
  10. <div class="photo-container">
  11. <div class="photo-wrapper" *ngFor="let photo of displayedPhotos">
  12. <ion-img [src]="photo.url" alt="Photo"></ion-img>
  13. </div>
  14. </div>
  15. </ion-content>