Sample
1 | <mat-grid-list cols="4" rowHeight="170px" gutterSize="5px"> |
You can see the grid list example shows 4 columns a grid. then there is a mat-grid-tile for each item in the list. On that tag we setup the *ngFor which is used to loop through a list of records specified in the reconciles variable, which is a class level varible defined in the component. Inside the Mat-grid-tile we have a mat-card. Inside the mat-card we have a mat-card-content and a mat-card-footer. here we show the data from the reconcile class.
here is what the reconcile component class looks like.
1 | : |