Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iwstkhr/ngx-ionic-helper-directives

Ionic helper directives for Angular
https://github.com/iwstkhr/ngx-ionic-helper-directives

angular directives helper ionic

Last synced: about 1 month ago
JSON representation

Ionic helper directives for Angular

Awesome Lists containing this project

README

        

# ngx-ionic-helper-directives

## Dependencies
* Angular 13
* Ionic 6

## Install
NOTE: Replace `x.x.x` with the version.

```
$ cd $YOUR_APP_PATH
$ curl -OL https://github.com/iwstkhr/ngx-ionic-helper-directives/raw/main/iwstkhr-ngx-ionic-helper-directives-x.x.x.tgz
$ npm add iwstkhr-ngx-ionic-helper-directives-x.x.x.tgz
```

## Setup
```ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { NgxIonicHelperDirectivesModule } from 'ngx-ionic-helper-directives';
import { AppComponent } from './app.component';

@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
NgxIonicHelperDirectivesModule, // Added
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}
```

## Usage
```html


You can see this when running in desktop platform.


You can see this when running NOT in mobile platform.

```

## License
MIT