Can We Use Ionic 3 Segemnt In Ionic4?

*Can we use the ionic 3 segments in the ionic 4 projects? is it bad?

<ion-segment [(ngModel)]="boxes">
  <ion-segment-button value="box1">
    Box 1
  </ion-segment-button>
  <ion-segment-button value="box2">
    Box 2
  </ion-segment-button>

</ion-segment>
<div *ngSwitchCase="'box1'">

  <p>hi its box 1</p>

</div>



<div *ngSwitchCase="'box2'">
  <p>hi its box 2</p>

</div>

Yes we can use, here is the reference

1 Like