Utils
In the utils folder you will find different angular features such as modals, file uploader, alerts, notifications and more.
Modals
There are 2 different modals with login and signup examples
We use Material Dialog component
Alerts
For alerts we created an Alert Component which is defined in shared module.
You can pass the following options to the alert component:
In
src/app/utils/pages/alerts/alerts.page.component.ts
you can find some of the different alerts you can create using this Alert Component.
File Uploader
We included different options to upload files, learn more in
src/app/utils/pages/file-uploader/file-uploader.page.component.html
We created a FileUploaderDirective which you can find in Shared Module.
Auto Complete
We used Material AutoComplete component to create some nice autocomplete input examples.
Check
src/app/utils/pages/auto-completer/auto-completer.component.html
to learn more.
Notifications
For notifications we created a Notification Component which is defined in shared module.
We use Material SnackBar component
In
src/app/utils/pages/notifications/notifications.page.component.ts
you can find some of the different notifications you can create using this Notifications Component.You can pass the following options to the notifications component:
Last updated