Bom dia,
Estou cirando um app do zero seguindo o curso.
Ao tentar chamar um componente recebo um erro que a pagina precisa estar declarada em Declarations e entryComponents mesmo declarando no export no próprio módulo do componente.
Código usado:
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { ErrorHandler, NgModule } from '@angular/core';
import { IonicApp, IonicErrorHandler, IonicModule } from 'ionic-angular';
import { SplashScreen } from '@ionic-native/splash-screen';
import { StatusBar } from '@ionic-native/status-bar';
import { MyApp } from './app.component';
import { HomePage } from '../pages/home/home';
import { CadastroPage } from '../pages/cadastro/cadastro';
@NgModule({
declarations: [
MyApp,
HomePage,
],
imports: [
BrowserModule,
IonicModule.forRoot(MyApp)
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
HomePage,
],
providers: [
StatusBar,
SplashScreen,
{provide: ErrorHandler, useClass: IonicErrorHandler}
]
})
export class AppModule {}
cadastro.module.ts
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { CadastroPage } from './cadastro';
@NgModule({
declarations: [
CadastroPage,
],
imports: [
IonicPageModule.forChild(CadastroPage),
],
exports:[
CadastroPage
]
})
export class CadastroPageModule {}
Quando faço o bind, estou chamando este método:
ChamaAvancar(){
this.navCtrl.push(CadastroPage);
}
Com o this.navCtrl.push(CadastroPage.name) não está funcionando também.
Obrigado desde já.