Guest User

Untitled

a guest
Mar 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <ion-segment [(ngModel)]="segment" color="primary">
  2. <ion-segment-button value="Home" (click)="page_redirect('HomePage')" text-center> Home </ion-segment-button>
  3. <ion-segment-button value="Featured" (click)="page_redirect('FeaturedItemPage')" text-center> Featured </ion-segment-button>
  4. <ion-segment-button value="Category" (click)="page_redirect('CategoriesPage')" text-center> Category </ion-segment-button>
  5. <ion-segment-button value="User" user text-center> User </ion-segment-button>
  6. </ion-segment>
  7.  
  8. page_redirect(page){
  9. this.navCtrl.push(page);
  10. }
Add Comment
Please, Sign In to add comment