How to use the ionic-angular.IonicPageModule.forChild function in ionic-angular

To help you get started, we’ve selected a few ionic-angular examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github communitybridge / easycla / cla-frontend-corporate-console / src / ionic / modals / add-company-modal / add-company-modal.module.ts View on Github external
// Copyright The Linux Foundation and each contributor to CommunityBridge.
// SPDX-License-Identifier: MIT

import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { AddCompanyModal } from './add-company-modal';
import { LoadingSpinnerComponentModule } from '../../components/loading-spinner/loading-spinner.module';

@NgModule({
  declarations: [AddCompanyModal],
  imports: [IonicPageModule.forChild(AddCompanyModal), LoadingSpinnerComponentModule],
  entryComponents: [AddCompanyModal]
})
export class AddCompanyModalModule {}
github yannbf / ionic3-components / src / pages / modal-with-navigation / move-document / move-document.module.ts View on Github external
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { MoveDocumentPage } from './move-document';

@NgModule({
  declarations: [
    MoveDocumentPage,
  ],
  imports: [
    IonicPageModule.forChild(MoveDocumentPage),
  ],
  exports: [
    MoveDocumentPage
  ]
})
export class MoveDocumentPageModule {}
github yannbf / ionic3-components / src / pages / slide / slide-photo-gallery / slide-photo-gallery.module.ts View on Github external
import { SlidePhotoGalleryPage } from './slide-photo-gallery';
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';

@NgModule({
  declarations: [
    SlidePhotoGalleryPage,
  ],
  imports: [
    IonicPageModule.forChild(SlidePhotoGalleryPage),
  ],
  exports: [
    SlidePhotoGalleryPage
  ]
})

export class SlidePhotoGalleryPageModule { }
github nuonuoge / ionic4_angular6_elm / src / pages / login / login.module.ts View on Github external
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { LoginPage } from './login';

@NgModule({
  declarations: [
    LoginPage,
  ],
  imports: [
    IonicPageModule.forChild(LoginPage),
  ],
  exports: [
    LoginPage
  ]
})
export class LoginPageModule {}
github airgap-it / airgap-vault / src / pages / secret-rules / secret-rules.module.ts View on Github external
import { NgModule } from '@angular/core'
import { IonicPageModule } from 'ionic-angular'
import { SecretRulesPage } from './secret-rules'
import { TranslateModule } from '@ngx-translate/core'

@NgModule({
  declarations: [SecretRulesPage],
  imports: [IonicPageModule.forChild(SecretRulesPage), TranslateModule],
  entryComponents: [SecretRulesPage]
})
export class SecretRulesPageModule {}
github ionic-team / starters / ionic-angular / official / super / src / pages / item-create / item-create.module.ts View on Github external
import { NgModule } from '@angular/core';
import { TranslateModule } from '@ngx-translate/core';
import { IonicPageModule } from 'ionic-angular';

import { ItemCreatePage } from './item-create';

@NgModule({
  declarations: [
    ItemCreatePage,
  ],
  imports: [
    IonicPageModule.forChild(ItemCreatePage),
    TranslateModule.forChild()
  ],
  exports: [
    ItemCreatePage
  ]
})
export class ItemCreatePageModule { }
github rdlabo / ionic-wpcom / src / pages / list-pages / pages.module.ts View on Github external
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { ListPages } from './pages';

import { PostsComponentModule } from '../../components/posts/posts.module';

@NgModule({
  declarations: [
    ListPages,
  ],
  imports: [
    IonicPageModule.forChild(ListPages),
    PostsComponentModule
  ],
  exports: [
    ListPages
  ]
})
export class ListPagesModule {}
github moodlehq / moodlemobile2 / src / core / sharedfiles / pages / list / list.module.ts View on Github external
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { CoreSharedFilesListPage } from './list';
import { TranslateModule } from '@ngx-translate/core';
import { CoreComponentsModule } from '@components/components.module';
import { CoreDirectivesModule } from '@directives/directives.module';

@NgModule({
    declarations: [
        CoreSharedFilesListPage
    ],
    imports: [
        CoreComponentsModule,
        CoreDirectivesModule,
        IonicPageModule.forChild(CoreSharedFilesListPage),
        TranslateModule.forChild()
    ]
})
export class CoreSharedFilesListPageModule {}
github Steemia / Steemia / src / pages / MenuPages / wallet / wallet.module.ts View on Github external
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { WalletPage } from './wallet';
import { ComponentsModule } from '../../../components/components.module';
import { TranslateModule } from "@ngx-translate/core";

@NgModule({
  declarations: [
    WalletPage,
  ],
  imports: [
    ComponentsModule,
    IonicPageModule.forChild(WalletPage),
    TranslateModule.forChild()
  ],
})
export class WalletPageModule {}
github hsuanxyz / ionic3-chat / src / pages / home / home.module.ts View on Github external
/**
 * Created by hsuanlee on 2017/4/4.
 */
import { NgModule} from '@angular/core';
import { HomePage} from './home';
import { IonicPageModule } from 'ionic-angular';

@NgModule({
    declarations: [HomePage],
    imports: [
        IonicPageModule.forChild(HomePage),

    ],
})
export class HomePageModule { }