简体   繁体   中英

Combine usage mat-grid and flexLayout

state: I build my forms with angular-flex-layout but I need to use the angular-grid with flex too, how can I use flex and grid together??

  <div fxLayout="row wrap" fxLayoutGap="15px">
    <ng-container *ngFor="let widget of containerList">
      <ng-container *ngIf="widget.widgetType.name === widgetTypeEnum.form.name">
        <div fxFlex="auto">
        <app-form-widget [data]="widget.config"></app-form-widget>
        </div>
      </ng-container>
    </ng-container>

    <ng-container *ngFor="let widget of containerList">
      <ng-container *ngIf="widget.widgetType.name === widgetTypeEnum.tree.name">
        <div fxFlex="auto">
          <app-tree-widget [data]="widget.config"></app-tree-widget>
        </div>
      </ng-container>
    </ng-container>

    <ng-container *ngFor="let widget of containerList">
      <ng-container *ngIf="widget.widgetType.name === widgetTypeEnum.table.name">
        <div fxFlex="auto">
        <app-table-widget [data]="widget.config"></app-table-widget>
        </div>
      </ng-container>
    </ng-container>

    <ng-container *ngFor="let widget of containerList">
      <ng-container *ngIf="widget.widgetType.name === widgetTypeEnum.tab.name">
        <div fxFlex="auto">
        <app-tab-widget [data]="widget.config"></app-tab-widget>
        </div>
      </ng-container>
    </ng-container>
  </div>

You don't use them at the same time on the same element.

<div gdColumns="repeat(5, 1fr)">
  <div fxLayout="row" fxLayoutAlign="start center">
    ...
  </div>
</div>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM