This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //constants | |
| const AGE_LOWER_LIMIT = 30; | |
| const AGE_UPPER_LIMIT = 40; | |
| const GENDER_MALE = "male"; | |
| const GENDER_FEMALE = "female"; | |
| //input data | |
| const input = [ | |
| { | |
| name: "hamza", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Injectable } from '@angular/core'; | |
| import { LoadingController, Loading } from 'ionic-angular'; | |
| /* | |
| * @Author: hamzox | |
| * @Date: 2018-10-10 10:53:14 | |
| * @Last Modified by: hamzox | |
| * @Last Modified time: 2018-10-10 11:05:01 | |
| * | |
| * @Class: LoaderProvider |