hi i try to create a login page when pass the correct params it go to the home page i try hard but when it always show me a white page after the i serve dont show any page
here is my home.js
code whiche have the form of the login:
import {Page} from 'ionic-angular';
import {Page, NavController} from 'ionic-angular';
import {MenuhomePage} from '../menuhome/menuhome';
@Page({
templateUrl: 'build/pages/home/home.html'
})
export class HomePage {
constructor(nav: NavController) {
this.nav = nav;
}
goToMenuHome(){
this.nav.push(MenuhomePage);
}
}
and here how i call it from the html folder inside a button tag:
<button (click)="goToMenuHome()">
Any help please…
Thank in advance