1234567891011121314151617 |
- <ion-header>
- <ion-toolbar>
- <ion-title>
- Photos
- </ion-title>
- </ion-toolbar>
- </ion-header>
- <ion-content>
- <ion-searchbar (ionInput)="onSearch($event)"></ion-searchbar>
- <div class="photo-container">
- <div class="photo-wrapper" *ngFor="let photo of displayedPhotos">
- <ion-img [src]="photo.url" alt="Photo"></ion-img>
- </div>
- </div>
- </ion-content>
|