Page Navigation

How to navigate page from home to about page

I am not sure why are not able to find this answer , here is a detailed documentation http://ionicframework.com/docs/components/#navigation , Please check

1 Like

I already tried this but I don’t know where I’m going wrong…
This is my code

import { Component } from ‘@angular/core’;
import { NavController } from ‘ionic-angular’;
import { Selection } from ‘…/selection/selection’;

@Component({
selector: ‘page-home’,
templateUrl: ‘home.html’
})
export class HomePage {
selection = Selection;
constructor(public navCtrl: NavController) {
this.navCtrl = navCtrl;
}

}

2 Likes

@keremalincak I had done it…by the way thanks for help me :relaxed:

1 Like

this.navCtrl.push(your page export class name);