Inside conference app ionic To navigate between pages class type in .ts file in ionic 2 where class type in export
Inside conference app ionic
To navigate between pages class type in .ts file in ionic 2 where class type in export
Use Nav
import { Events, MenuController, Nav, Platform } from 'ionic-angular';
right in start of declaration of class
export class ConferenceApp {
// the root nav is a child of the root app component
// @ViewChild(Nav) gets a reference to the app's root nav
@ViewChild(Nav) nav: Nav;
Comments
Post a Comment