有没有办法使iOS和Android上的离子段看起来一样?

时间:2019-08-03 02:14:24

标签: ionic-framework ionic4

设置离子段模式后,在离子实验室中渲染它们后,它们看起来仍然有所不同。

我尝试将ion-segment和ion-toolbar的模式设置为“ md”,但它们看起来仍然不同。

https://ibb.co/HV75Ly2以下是设置模式后的图像。

<ion-toolbar mode="md">
    <ion-segment scrollable mode="md">
      <ion-segment-button value="top" checked>
        TOP
      </ion-segment-button>
      <ion-segment-button value="nfl">
        NFL
      </ion-segment-button>
      <ion-segment-button value="nba">
        NBA
      </ion-segment-button>
      <ion-segment-button value="mlb">
        MLB
      </ion-segment-button>
      <ion-segment-button value="nhl">
        NHL
      </ion-segment-button>
      <ion-segment-button value="ncaaf">
        NCAAF
      </ion-segment-button>
      <ion-segment-button value="ncaab">
        NCAAB
      </ion-segment-button>
    </ion-segment>
</ion-toolbar>

我希望ion-segment在两个平台上都看起来像android版本,但是目前,它们看起来还是不一样。

1 个答案:

答案 0 :(得分:0)

由于Ionic 4 Beta之一,您还必须在每个组件上设置mode

这也意味着ion-segment-button组件,例如:

<ion-toolbar mode="md">
    <ion-segment scrollable mode="md">
      <ion-segment-button mode="md" value="top" checked>
        TOP
      </ion-segment-button>
      <ion-segment-button mode="md" value="nfl">
        NFL
      </ion-segment-button>
      <ion-segment-button mode="md" value="nba">
        NBA
      </ion-segment-button>
      <ion-segment-button mode="md" value="mlb">
        MLB
      </ion-segment-button>
      <ion-segment-button mode="md" value="nhl">
        NHL
      </ion-segment-button>
      <ion-segment-button mode="md" value="ncaaf">
        NCAAF
      </ion-segment-button>
      <ion-segment-button mode="md" value="ncaab">
        NCAAB
      </ion-segment-button>
    </ion-segment>
</ion-toolbar>