New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@mbamobi/mural-ionic

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mbamobi/mural-ionic

Componente de mural para ionic

latest
Source
npmnpm
Version
0.0.6
Version published
Maintainers
2
Created
Source

MuralModule

Componente de mural (telas + provider) para ionic

Using in an Ionic 2 app

import { NgModule } from '@angular/core';
import { IonicApp, IonicModule } from 'ionic-angular';
import { MyApp } from './app.component';

// import MuralComponentModule
import { MuralComponentModule } from '@mbamobi/mural-ionic';

@NgModule({
  declarations: [
    MyApp
  ],
  imports: [
    IonicModule.forRoot(MyApp),
    MuralComponentModule.forRoot()
  ],
  bootstrap: [IonicApp],
  entryComponents: [
    MyApp
  ]
})

É possível passar um provider personalizado.


import { BaseProvider } from '@mbamobi/mural-ionic';

export class CustomProvider implements BaseProvider {
}

@NgModule({
  declarations: [
    MyApp
  ],
  imports: [
    IonicModule.forRoot(MyApp),
    MuralComponentModule.forRoot(CustomProvider)
  ],
  bootstrap: [IonicApp],
  entryComponents: [
    MyApp
  ]
})

Contributing

See CONTRIBUTING.md

Keywords

ionic

FAQs

Package last updated on 29 Aug 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts