I have more than 1000 designs and designs increase over time.
I want to display images in 200*200 size, side by side and start displaying next row once it reaches end.
here is my code.
<div fxLayout="row" fxLayoutWrap fxLayoutGap="2rem" fxLayoutAlign="center">
<mat-card
*ngFor="let design of designs" >
<img mat-card-image src="data:image/jpg;base64, {{ design.data }}" />
<div>
<mat-card-title>{{ design.name }}</mat-card-title>
<mat-card-subtitle>{{ design.code }}</mat-card-subtitle>
</div>
</mat-card>
</div>
I am trying to accomplish pretty much the same but more in responsive way using ngFor Link
How can I do this using Flex Layout?