+ Second page
+ This page does not have a nav bar!
+
+
+
+
+
+
+ `
+})
+class SecondPage {
+ constructor(
+ nav: NavController,
+ params: NavParams
+ ) {
+ this.nav = nav;
+ this.params = params;
+
+ console.log('Second page params:', params);
+ }
+
+ setItems() {
+ let items = [
+ FirstPage,
+ ThirdPage
+ ];
+
+ this.nav.setItems(items);
+ }
+
+ pop() {
+ this.nav.pop();
+ }
+
+ push() {
+ this.nav.push(ThirdPage);
+ }
+
+}
+
+
+@IonicView({
+ template: `
+