Guest User

Untitled

a guest
Feb 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <mat-form-field class="search-form">
  2. <input matInput placeholder="Search Picture" type="text">
  3. </mat-form-field>
  4. <button button="submit" mat-raised-button color="primary">Search</button>
  5. <br>
  6.  
  7. <div fxLayout="row" fxLayout.xs="column" fxLayoutWrap fxLayoutGap="0.5%" fxLayoutAlign="center">
  8. <mat-card class="card-picture" *ngFor="let picture of pictures">
  9. <mat-card-title fxLayout.gt-xs="row" fxLayout.xs="column">
  10. <span fxFlex="80%">{{picture.title}}</span>
  11. <mat-icon fxFlex="10%">mode_edit</mat-icon>
  12. <mat-icon fxFlex="10%">delete</mat-icon>
  13. </mat-card-title>
  14. <img mat-card-image [src]="picture.img">
  15. </mat-card>
  16. </div>
Add Comment
Please, Sign In to add comment