Simple utility to speed up UI development with Ionic Framework + Angular.
npm install @ionic-admin/uiSimple utility to speed up UI development with Ionic Framework + Angular.
|  |  |  |
| -------------- | --------- | ---------- |
- Create and present components using Ionic controllers(Nav, Alert, Modal, Toast, Popover and Loading) in one call and one import.
- Predefined Settings: Configure the way your app communicates and avoid repeating itself.
- Save time using ready components for common features through modal/popover components.
Install Ionic Admin UI with npm
``bash`
npm install @ionic-admin/uiIonicAdminUiModule.forRoot()
Add to your AppModule imports and start using the services.Roadmap
- [x] Generate basic library structure
- [x] Generate configurable/publishable module
- [x] UiService: Nav/Modal/Toast/Alert/Loading/Popover controllers simplified.
- [ ] Create common components to open with modal/popover:
- - [ ] List: Items with features: search, filter, sort, single/multiple selection
- [ ] Add tests
Library to simplify the use of Ionic controllers: Nav, Alert, Toast, Modal, Popover and Loading.
#### Usage/Examples
`typescript
import { UiService } from '@ionic-admin/ui'
constructor(private ui: UiService){ }
showAlert(){
this.ui.alert({ message: 'Worked' })
}
showToast(){
this.ui.toast({ message: 'Worked!' })
}
``
If you have any feedback, please get in touch via twitter: @leoruhland