Проблема с отображением макета Flex в Safari IOS при использовании fx-layout = "column" - PullRequest
1 голос
/ 15 января 2020

В настоящее время мы используем Angular в качестве интерфейса с fi-layout api для отзывчивости.

Когда мы используем fxLayout = "column", все элементы свернуты и, похоже, не имеют любой высоты.

Какова лучшая практика при использовании fx-layout / flex для обработки этих сценариев ios?

Использование angular 9.0.0r c с flex -layout ":" ^ 8.0.0-beta.27

Настройка списка обозревателей

0.5% последние 2 версии Firefox ESR not dead # IE 9-11

Здесь изображение от IOS Safari (12)

safari

Здесь изображение из chrome

chrome

Здесь повторный контейнер, который отображает видимый список на изображении выше

  <div *ngIf="!(dataSource.loading$ | async)">
<mat-card  class="pointer mb-2" *ngFor="let quotation of dataSource.quotations$ | async"
  (click)="onClickRow(quotation)">
  <mat-card-content fxLayout="row" fxLayoutGap.gt-xs="15px" fxLayout.xs="column" fxLayoutAlign="start center"
    fxLayoutAlign.xs="center center">

    <div fxLayout="column" fxLayoutAlign="center center">
      <img class="profile-picture" *ngIf="authSvc.currentUser.hasSalesRights && quotation.customer.photoUrl"
        [src]="quotation.customer.photoUrl" alt="">
      <img class="profile-picture" *ngIf="authSvc.currentUser.hasCustomerRights && quotation.salesRep.photoUrl"
        [src]="quotation.salesRep.photoUrl" alt="">
      <img class="profile-picture" *ngIf="authSvc.currentUser.hasSalesRights && !quotation.customer.photoUrl"
        src="https://storage.googleapis.com/edcommerce/businesslogic/images/placeholder/avatar.jpg" alt="">
    </div>

    <div fxLayout="column" fxFlex fxLayoutAlign.xs="center center">
      <div fxLayout="row" *ngIf="authSvc.currentUser.hasSalesRights">
        <span class="mat-body">{{quotation.createdDate | edDate}}</span>
      </div>
      <div fxLayout="row" fxLayoutAlign.xs="center center">
        <span class="mat-h2 m-0">{{quotUtils.getVehicleDescription(quotation)}}</span>
      </div>

      <div fxLayout="row" fxLayoutGap="10px" *ngIf="authSvc.currentUser.hasSalesRights"
        fxLayoutAlign="start center">
        <span class="mat-body">{{ts('common.user.text.roles.customer')}}</span>
        <span class="mat-body">{{quotation.customer.fullName}}</span>
      </div>

      <div fxLayout="row" fxLayoutGap="10px" *ngIf="authSvc.currentUser.hasBuyerRights"
        fxLayoutAlign="start center">
        <span class="mat-body">{{ts('common.user.text.roles.sales_rep')}}</span>
        <span class="mat-body">{{quotation.salesRep.fullName}}</span>

      </div>

      <div fxLayout="row" fxLayout.xs="column" fxLayoutGap.gt-xs="10px" fxLayoutAlign="start center">
        <span class="mat-body">{{ts('page.quotations.text.step_required')}}</span>
        <span
          class="mat-body-2 color-primary">{{enumUtils.Quotation.getStatusDescByRole(quotation.status,statusTypes)}}</span>
      </div>
    </div>

  </mat-card-content>
</mat-card>
  </div>

1 Ответ

2 голосов
/ 16 января 2020

Проблема с сафари возникает в этом элементе (второй контейнер в содержании mat-card) :

<div fxLayout="column" fxFlex fxLayoutAlign.xs="center center">

Изгиб в сафари привел к странному экспоненциальному числу в CSS примерно так: flex: 1 1 1.12e-16

Изменение fxFlex для fxFlex = "grow" , созданное в сафари это css flex: 1 1 100%, которые фиксируют высоту!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...