0.0.1 • Published 6 years ago

ionic-operation-service v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

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 {}