Ionic 3中的细分

时间:2017-07-11 07:58:15

标签: angular ionic2 ionic3

在我的项目中,我使用段来显示类别,点击后,食物会在下面的框中加载。唯一的问题是,我有10个以上的类别,当使用细分时,类别会缩短,如下所示。

enter image description here

是否可以在不缩短单词的情况下显示水平滚动段按钮。

代码:

<ion-col col-12>
 <ion-segment [(ngModel)]="cat">
  <ion-segment-button color="primary" *ngFor="let category of cats" [value]="category.Category">
   {{category.Category}}
  </ion-segment-button>
 </ion-segment>
</ion-col>

0 个答案:

没有答案