Hello i want to create buttons to redirect to another page (SettingsPage, AccountPage). The .html file that i want to do that, is the app.html file.
app.module.ts
import { NgModule, ErrorHandler } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular';
import { MyApp } from './app.component';
import {Camera} from '@ionic-native/camera';
import { AuthService } from '../providers/auth-service';
import { SplitPane } from '../providers/split-pane';
import { Common } from '../providers/common';
import { HttpModule } from "@angular/http";
import { Welcome } from '../pages/welcome/welcome';
import { Login } from '../pages/login/login';
import { Signup } from '../pages/signup/signup';
import { AboutPage } from '../pages/about/about';
import { ContactPage } from '../pages/contact/contact';
import { HomePage } from '../pages/home/home';
import { TabsPage } from '../pages/tabs/tabs';
import { UploadPage } from '../pages/upload/upload';
import { SearchPage } from '../pages/search/search';
import { SettingsPage } from '../pages/settings/settings';
import { AccountPage } from '../pages/account/account';
import { StatusBar } from '@ionic-native/status-bar';
import { SplashScreen } from '@ionic-native/splash-screen';
import { MomentModule } from 'angular2-moment';
import { LinkyModule } from 'angular-linky';
import { AuthserviceProvider } from '../providers/authservice/authservice';
@NgModule({
declarations: [
MyApp,
Welcome,
Login,
Signup,
AboutPage,
ContactPage,
HomePage,
TabsPage,
UploadPage,
SearchPage,
**AccountPage,**
** SettingsPage**
],
imports: [
BrowserModule,HttpModule,MomentModule,LinkyModule,
IonicModule.forRoot(MyApp)
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
Welcome,
Login,
Signup,
AboutPage,
ContactPage,
HomePage,
TabsPage,
UploadPage,
SearchPage,
**AccountPage,**
** SettingsPage**
],
providers: [
StatusBar,
SplashScreen,Camera,AuthService,SplitPane,Common,
{provide: ErrorHandler, useClass: IonicErrorHandler},
AuthserviceProvider
]
})
export class AppModule {}`Preformatted text`
app.html
<ion-header>
<ion-toolbar>
<button ion-button (click)="SettingsPage()"><i class="fa fa-cog" id="searchButton"></i></button>
<button ion-button (click)="AccountPage()"><i class="fa fa-user" id="goldButton" title="Upload"></i></button>
</ion-toolbar>
</ion-header>
app.components.ts
import { SettingsPage } from '../pages/settings/settings';
import { AccountPage } from '../pages/account/account';
@Component({
templateUrl: 'app.html'
})
export class MyApp {
rootPage:any = Welcome;
constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen, public app: App, public splitPane: SplitPane, public menu: MenuController) {
platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
statusBar.styleDefault();
splashScreen.hide();
});
}
SettingsPage() {
this.navCtrl.push(SettingsPage);
}
SearchPage() {
this.navCtrl.push(AccountPage);
}
I am getting an error: Unexpected value ‘undefined’ declared by the module ‘AppModule’.
Any idea what to do?