Priority Ionic is the Priority development library for building mobile apps.
Priority Ionic is built on top of Angular, Ionic and the Priority Web SDK, all put together to create the best development library for Priority in mobile.
Priority Ionic provides a set of powerful services along with useful components that make building Ionic apps integrating with Priority easier than ever.
Explore the docs for further explanation on how to use Priority Ionic, its API and content.
Install Priority Ionic package using npm:
$ npm install priority-ionic --save
Add the `PriorityIonicModule` to your app's module imports:
import { PriorityIonicModule } from 'priority-ionic';
@NgModule({
...
imports: [
PriorityIonicModule,
IonicModule.forRoot(AppComponent)
],
...
})
export class AppModule {}
Thats it! You are ready to go.
The Confectionery app is a demo app built with the Priority Ionic library. It is the perfect starting point for learning and building your own app.
You're more than welcome contributing by opening an issue or submitting a pull request with your fixes or additions.
Setup:
- Fork and clone the repo.
- Install dependencies. run
$ npm install
- Compile sources. run
$ npm run build
. - Install locally in your project with
$ npm install file:path/to/repo