I have been trying to work with the code, I added the button but I don\'t know how to link it to another page when clicking on it.
html:
Go an Other Page
OR
in TS:
import { NavController } from 'ionic-angular'; import { AnOtherPage } from '/anOtherPage'; anOtherPage: AnOtherPage; constructor(public navCtrl: NavController) {} goAnOtherPage() { this.navCtrl.setRoot(anOtherPage); }