@ionic/angular#AngularDelegate TypeScript Examples
The following examples show how to use
@ionic/angular#AngularDelegate.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: module.ts From Elastos.Essentials.App with MIT License | 6 votes |
@NgModule({
declarations: [
],
imports: [
CommonModule,
MigratorRoutingModule,
SharedComponentsModule,
TranslateModule
],
exports: [],
bootstrap: [],
entryComponents: [],
providers: [
ModalController,
AngularDelegate,
Platform
],
schemas: [CUSTOM_ELEMENTS_SCHEMA] // Needed to find ion-back-button, etc
})
export class MigratorModule { }
Example #2
Source File: module.ts From Elastos.Essentials.App with MIT License | 6 votes |
@NgModule({
declarations: [
],
imports: [
CommonModule,
RedPacketsRoutingModule,
SharedComponentsModule,
TranslateModule
],
exports: [],
bootstrap: [],
entryComponents: [],
providers: [
ModalController,
AngularDelegate,
Platform
],
schemas: [CUSTOM_ELEMENTS_SCHEMA] // Needed to find ion-back-button, etc
})
export class RedPacketsModule { }
Example #3
Source File: init.module.ts From Elastos.Essentials.App with MIT License | 6 votes |
@NgModule({
declarations: [
],
imports: [
TranslateModule
],
exports: [],
bootstrap: [],
entryComponents: [],
providers: [
QRScanner,
ModalController,
AngularDelegate,
Platform
],
schemas:[]
})
export class ScannerInitModule {}
Example #4
Source File: module.ts From Elastos.Essentials.App with MIT License | 6 votes |
@NgModule({
declarations: [
ScanPage
],
imports: [
CommonModule,
ScannerRoutingModule,
SharedComponentsModule,
TranslateModule
],
exports: [],
bootstrap: [],
entryComponents: [],
providers: [
QRScanner,
ModalController,
AngularDelegate,
Platform
],
schemas:[CUSTOM_ELEMENTS_SCHEMA] // Needed to find ion-back-button, etc
})
export class ScannerModule {}
Example #5
Source File: module.ts From Elastos.Essentials.App with MIT License | 6 votes |
@NgModule({
declarations: [
],
imports: [
CommonModule,
SecurityRoutingModule,
SharedComponentsModule,
TranslateModule
],
exports: [],
bootstrap: [],
entryComponents: [],
providers: [
ModalController,
AngularDelegate,
Platform
],
schemas: [CUSTOM_ELEMENTS_SCHEMA] // Needed to find ion-back-button, etc
})
export class SecurityModule { }