gitextract_uwg3j6uc/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── TelerikUI.d.ts ├── app/ │ ├── App_Resources/ │ │ ├── Android/ │ │ │ ├── app.gradle │ │ │ ├── google-services.json │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── res/ │ │ │ ├── drawable-nodpi/ │ │ │ │ └── splash_screen.xml │ │ │ ├── values/ │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── values-v21/ │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ └── xml/ │ │ │ └── shortcuts.xml │ │ └── iOS/ │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.launchimage/ │ │ │ │ └── Contents.json │ │ │ ├── LaunchScreen.AspectFill.imageset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchScreen.Center.imageset/ │ │ │ └── Contents.json │ │ ├── GoogleService-Info.plist │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── Models.scnassets/ │ │ │ ├── Ball.dae │ │ │ ├── Car.dae │ │ │ └── Tree.dae │ │ └── build.xcconfig │ ├── abstract-menu-page-component.ts │ ├── app.component.html │ ├── app.component.ts │ ├── app.css │ ├── app.module.ngfactory.d.ts │ ├── app.module.ts │ ├── app.routing.ts │ ├── app.tablet.css │ ├── appicon/ │ │ ├── README.md │ │ ├── appicon-common.css │ │ ├── appicon-routing.module.ts │ │ ├── appicon.component.html │ │ ├── appicon.component.ts │ │ └── appicon.module.ts │ ├── ar/ │ │ ├── README.md │ │ ├── ar-common.css │ │ ├── ar-routing.module.ts │ │ ├── ar.component.html │ │ ├── ar.component.ts │ │ └── ar.module.ts │ ├── feedback/ │ │ ├── README.md │ │ ├── feedback-common.css │ │ ├── feedback-routing.module.ts │ │ ├── feedback.component.html │ │ ├── feedback.component.ts │ │ ├── feedback.module.ts │ │ └── helpers/ │ │ ├── cfalertdialog-helper.ts │ │ ├── fancyalert-helper.ts │ │ ├── feedback-helper.ts │ │ ├── localnotifications-helper.ts │ │ ├── snackbar-helper.ts │ │ └── toast-helper.ts │ ├── firebase/ │ │ ├── README.md │ │ ├── firebase-common.css │ │ ├── firebase-routing.module.ts │ │ ├── firebase.component.html │ │ ├── firebase.component.ts │ │ └── firebase.module.ts │ ├── fonts/ │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── materialdesignicons.css │ ├── home/ │ │ ├── home-common.css │ │ ├── home.component.html │ │ └── home.component.ts │ ├── info-modal/ │ │ ├── info-modal-common.css │ │ ├── info-modal.html │ │ ├── info-modal.tablet.css │ │ ├── info-modal.ts │ │ ├── info-routing.module.ts │ │ └── info.module.ts │ ├── input/ │ │ ├── README.md │ │ ├── helpers/ │ │ │ ├── checkbox-helper.ts │ │ │ └── iqkeyboard-helper.ts │ │ ├── input-common.css │ │ ├── input-routing.module.ts │ │ ├── input.android.css │ │ ├── input.component.html │ │ ├── input.component.ts │ │ ├── input.ios.css │ │ └── input.module.ts │ ├── main.aot.ts │ ├── main.ts │ ├── mapping/ │ │ ├── README.md │ │ ├── mapping-common.css │ │ ├── mapping-routing.module.ts │ │ ├── mapping.component.html │ │ ├── mapping.component.ts │ │ └── mapping.module.ts │ ├── modules/ │ │ └── debounce/ │ │ ├── debounce.directive.ts │ │ └── debounce.module.ts │ ├── package.json │ ├── platform.android.css │ ├── platform.ios.css │ ├── services/ │ │ └── toast.service.ts │ ├── shared/ │ │ ├── config.ts │ │ ├── plugin-info-wrapper.ts │ │ └── plugin-info.ts │ ├── speech/ │ │ ├── README.md │ │ ├── speech-common.css │ │ ├── speech-routing.module.ts │ │ ├── speech.android.css │ │ ├── speech.component.html │ │ ├── speech.component.ts │ │ ├── speech.ios.css │ │ └── speech.module.ts │ └── utils/ │ ├── status-bar-util.ts │ └── tablet-util.ts ├── e2e/ │ ├── config/ │ │ ├── appium.capabilities.json │ │ └── mocha.opts │ ├── sample-test.e2e.ts │ ├── setup.ts │ └── tsconfig.json ├── firebase.nativescript.json ├── package.json ├── references.d.ts ├── tsconfig.esm.json ├── tsconfig.json ├── tsconfig.tns.json ├── tslint.json └── webpack.config.js