April 2018
Intermediate to advanced
390 pages
8h 46m
English
At a high level, this is how the app is structured:
Let's take a look at home.ts. You must import both NavController and NavParams:
import { NavController, NavParams } from 'ionic-angular';
For your constructor, you need to do a few things, which are as follows:
public myString: string = 'Example 1 - This is just a string';
public myJSON: any = {text: ''};
otherPage: any = OtherPage;
constructor(public navCtrl: NavController) {
}
The this.navCtrl variable will reference ...