ionic-operation-service
v0.0.1
Published
A service used to show results of operations
Downloads
2
Readme
Ionic Operation Service
This is a service for Ionic 3+ used to display useful loading popups and messages.
WIP
This is a work in progress made from various elements used in several of our projects.
Want to lend a hand?
Make a suggestion or go ahead and submit a pull request.
Using the module in an Ionic 3 app
import { NgModule } from '@angular/core';
import { IonicApp, IonicModule } from 'ionic-angular';
import { MyApp } from './app.component';
import { HomePage } from '../pages/home/home';
// Import the module
import { OperationModule } from 'ionic-operation-service';
@NgModule({
declarations: [
MyApp,
HomePage
],
imports: [
IonicModule.forRoot(MyApp),
OperationModule // Put the module here
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
HomePage
],
providers: []
})
export class AppModule {}