I am very new to flex-layout and having trouble fixing the following:
https://github.com/angular/flex-layout
My ngFor:
<div fxLayout.xs="column">
<country fxFlex *ngFor="let country of countries" [country]="country"></country>
</div>
Result:
What If I only want 3 countries on a row, in other words what if I want the last 'Germany' to be on the next row?
Is this only possible by creating multiple fxLayout's? By that I mean 2 loops, 1 to create the number of fxLayout's and another inner loop to show my country components (fxFlex items). Thanks in advance!