Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/iwstkhr/ngx-ionic-helper-directives
- Owner: iwstkhr
- License: mit
- Created: 2021-08-15T14:43:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-31T15:24:26.000Z (5 months ago)
- Last Synced: 2024-11-09T20:44:11.729Z (3 months ago)
- Topics: angular, directives, helper, ionic
- Language: TypeScript
- Homepage:
- Size: 205 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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