├── .editorconfig ├── .firebaserc ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .gitlab-ci.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config.xml ├── firebase.json ├── ionic.config.json ├── ionic.starter.json ├── package.json ├── resources ├── android │ ├── icon │ │ ├── drawable-hdpi-icon.png │ │ ├── drawable-ldpi-icon.png │ │ ├── drawable-mdpi-icon.png │ │ ├── drawable-xhdpi-icon.png │ │ ├── drawable-xxhdpi-icon.png │ │ └── drawable-xxxhdpi-icon.png │ └── splash │ │ ├── drawable-land-hdpi-screen.png │ │ ├── drawable-land-ldpi-screen.png │ │ ├── drawable-land-mdpi-screen.png │ │ ├── drawable-land-xhdpi-screen.png │ │ ├── drawable-land-xxhdpi-screen.png │ │ ├── drawable-land-xxxhdpi-screen.png │ │ ├── drawable-port-hdpi-screen.png │ │ ├── drawable-port-ldpi-screen.png │ │ ├── drawable-port-mdpi-screen.png │ │ ├── drawable-port-xhdpi-screen.png │ │ ├── drawable-port-xxhdpi-screen.png │ │ └── drawable-port-xxxhdpi-screen.png ├── icon.png └── splash.png ├── src ├── app │ ├── app.component.ts │ ├── app.html │ ├── app.module.ts │ ├── app.scss │ ├── firebase.config.ts │ └── main.ts ├── assets │ ├── icon │ │ └── favicon.ico │ ├── images │ │ ├── address-bg.jpg │ │ ├── banner.jpg │ │ ├── contact-bg.jpg │ │ ├── firebase-logo.png │ │ ├── menu-bg.jpg │ │ └── profile.png │ └── json │ │ ├── about.json │ │ ├── ecommerce.json │ │ ├── event.json │ │ ├── gallery.json │ │ ├── home.json │ │ ├── list.json │ │ ├── news.json │ │ ├── notification.json │ │ └── social.json ├── declarations.d.ts ├── index.html ├── manifest.json ├── pages │ ├── contact │ │ ├── contact.html │ │ ├── contact.module.ts │ │ ├── contact.scss │ │ └── contact.ts │ ├── firebase │ │ ├── firebase.html │ │ ├── firebase.module.ts │ │ ├── firebase.scss │ │ ├── firebase.ts │ │ ├── form │ │ │ ├── add-form │ │ │ │ ├── add-form.html │ │ │ │ ├── add-form.module.ts │ │ │ │ ├── add-form.scss │ │ │ │ └── add-form.ts │ │ │ ├── edit-form │ │ │ │ ├── edit-form.html │ │ │ │ ├── edit-form.module.ts │ │ │ │ ├── edit-form.scss │ │ │ │ └── edit-form.ts │ │ │ ├── form.html │ │ │ ├── form.module.ts │ │ │ ├── form.scss │ │ │ └── form.ts │ │ ├── login │ │ │ ├── login.html │ │ │ ├── login.module.ts │ │ │ ├── login.scss │ │ │ └── login.ts │ │ └── registration │ │ │ ├── registration.html │ │ │ ├── registration.module.ts │ │ │ ├── registration.scss │ │ │ └── registration.ts │ ├── functions │ │ ├── ad-mob │ │ │ ├── ad-mob.html │ │ │ ├── ad-mob.module.ts │ │ │ ├── ad-mob.scss │ │ │ └── ad-mob.ts │ │ ├── app-rate │ │ │ ├── app-rate.html │ │ │ ├── app-rate.module.ts │ │ │ ├── app-rate.scss │ │ │ └── app-rate.ts │ │ ├── barcode-scanner │ │ │ ├── barcode-scanner.html │ │ │ ├── barcode-scanner.module.ts │ │ │ ├── barcode-scanner.scss │ │ │ └── barcode-scanner.ts │ │ ├── call-number │ │ │ ├── call-number.html │ │ │ ├── call-number.module.ts │ │ │ ├── call-number.scss │ │ │ └── call-number.ts │ │ ├── camera │ │ │ ├── camera.html │ │ │ ├── camera.module.ts │ │ │ ├── camera.scss │ │ │ └── camera.ts │ │ ├── functions.html │ │ ├── functions.module.ts │ │ ├── functions.scss │ │ ├── functions.ts │ │ ├── in-app-browsser │ │ │ ├── in-app-browsser.html │ │ │ ├── in-app-browsser.module.ts │ │ │ ├── in-app-browsser.scss │ │ │ └── in-app-browsser.ts │ │ ├── local-push │ │ │ ├── local-push.html │ │ │ ├── local-push.module.ts │ │ │ ├── local-push.scss │ │ │ └── local-push.ts │ │ ├── map │ │ │ ├── direction.directive.ts │ │ │ ├── map.html │ │ │ ├── map.module.ts │ │ │ ├── map.scss │ │ │ ├── map.ts │ │ │ └── styled-map.directive.ts │ │ ├── push │ │ │ ├── push.html │ │ │ ├── push.module.ts │ │ │ ├── push.scss │ │ │ ├── push.service.ts │ │ │ └── push.ts │ │ ├── social-sharing │ │ │ ├── social-sharing.html │ │ │ ├── social-sharing.module.ts │ │ │ ├── social-sharing.scss │ │ │ └── social-sharing.ts │ │ └── video-capture │ │ │ ├── video-capture.html │ │ │ ├── video-capture.module.ts │ │ │ ├── video-capture.scss │ │ │ └── video-capture.ts │ ├── home │ │ ├── home.html │ │ ├── home.module.ts │ │ ├── home.scss │ │ ├── home.service.ts │ │ └── home.ts │ ├── layouts │ │ ├── about │ │ │ ├── about.service.ts │ │ │ ├── team-member-full-view │ │ │ │ ├── team-member-full-view.html │ │ │ │ ├── team-member-full-view.module.ts │ │ │ │ ├── team-member-full-view.scss │ │ │ │ └── team-member-full-view.ts │ │ │ └── team-members │ │ │ │ ├── team-members.html │ │ │ │ ├── team-members.module.ts │ │ │ │ ├── team-members.scss │ │ │ │ └── team-members.ts │ │ ├── chart │ │ │ ├── chart.html │ │ │ ├── chart.module.ts │ │ │ ├── chart.scss │ │ │ └── chart.ts │ │ ├── e-commerce │ │ │ ├── checkout │ │ │ │ ├── checkout.html │ │ │ │ ├── checkout.module.ts │ │ │ │ ├── checkout.scss │ │ │ │ └── checkout.ts │ │ │ ├── e-commerce-home │ │ │ │ ├── e-commerce-home.html │ │ │ │ ├── e-commerce-home.module.ts │ │ │ │ ├── e-commerce-home.scss │ │ │ │ └── e-commerce-home.ts │ │ │ ├── ecommerce.service.ts │ │ │ ├── product-description │ │ │ │ ├── product-description.html │ │ │ │ ├── product-description.module.ts │ │ │ │ ├── product-description.scss │ │ │ │ └── product-description.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.html │ │ │ │ ├── product-details.module.ts │ │ │ │ ├── product-details.scss │ │ │ │ └── product-details.ts │ │ │ └── product │ │ │ │ ├── product.html │ │ │ │ ├── product.module.ts │ │ │ │ ├── product.scss │ │ │ │ └── product.ts │ │ ├── event │ │ │ ├── event-details │ │ │ │ ├── event-details.html │ │ │ │ ├── event-details.module.ts │ │ │ │ ├── event-details.scss │ │ │ │ └── event-details.ts │ │ │ ├── event.service.ts │ │ │ └── event │ │ │ │ ├── event.html │ │ │ │ ├── event.module.ts │ │ │ │ ├── event.scss │ │ │ │ └── event.ts │ │ ├── gallery │ │ │ ├── gallery-full-view │ │ │ │ ├── gallery-full-view.html │ │ │ │ ├── gallery-full-view.module.ts │ │ │ │ ├── gallery-full-view.scss │ │ │ │ └── gallery-full-view.ts │ │ │ ├── gallery.service.ts │ │ │ └── gallery │ │ │ │ ├── gallery.html │ │ │ │ ├── gallery.module.ts │ │ │ │ ├── gallery.scss │ │ │ │ └── gallery.ts │ │ ├── layouts.html │ │ ├── layouts.module.ts │ │ ├── layouts.scss │ │ ├── layouts.ts │ │ ├── list │ │ │ ├── list-details │ │ │ │ ├── list-details.html │ │ │ │ ├── list-details.module.ts │ │ │ │ ├── list-details.scss │ │ │ │ └── list-details.ts │ │ │ ├── list.service.ts │ │ │ └── list │ │ │ │ ├── list.html │ │ │ │ ├── list.module.ts │ │ │ │ ├── list.scss │ │ │ │ └── list.ts │ │ ├── news │ │ │ ├── news-detail │ │ │ │ ├── news-detail.html │ │ │ │ ├── news-detail.module.ts │ │ │ │ ├── news-detail.scss │ │ │ │ └── news-detail.ts │ │ │ ├── news.service.ts │ │ │ └── news │ │ │ │ ├── news.html │ │ │ │ ├── news.module.ts │ │ │ │ ├── news.scss │ │ │ │ └── news.ts │ │ ├── notifications │ │ │ ├── notification.service.ts │ │ │ ├── notifications-details │ │ │ │ ├── notifications-details.html │ │ │ │ ├── notifications-details.module.ts │ │ │ │ ├── notifications-details.scss │ │ │ │ └── notifications-details.ts │ │ │ └── notifications │ │ │ │ ├── notifications.html │ │ │ │ ├── notifications.module.ts │ │ │ │ ├── notifications.scss │ │ │ │ └── notifications.ts │ │ └── social │ │ │ ├── comments │ │ │ ├── comments.html │ │ │ ├── comments.module.ts │ │ │ ├── comments.scss │ │ │ └── comments.ts │ │ │ ├── profile │ │ │ ├── profile.html │ │ │ ├── profile.module.ts │ │ │ ├── profile.scss │ │ │ └── profile.ts │ │ │ ├── social-home │ │ │ ├── social-home.html │ │ │ ├── social-home.module.ts │ │ │ ├── social-home.scss │ │ │ └── social-home.ts │ │ │ └── social.service.ts │ └── settings │ │ ├── settings.html │ │ ├── settings.module.ts │ │ ├── settings.scss │ │ └── settings.ts ├── service-worker.js └── theme │ ├── common.scss │ ├── common │ ├── about.scss │ ├── color-theme.scss │ ├── components.scss │ ├── e-commerce.scss │ ├── event.scss │ ├── firebase.scss │ ├── functions.scss │ ├── gallery.scss │ ├── layouts.scss │ ├── list.scss │ ├── menu.scss │ ├── notifications.scss │ ├── settings.scss │ └── social.scss │ └── variables.scss ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/README.md -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/config.xml -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/firebase.json -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/ionic.config.json -------------------------------------------------------------------------------- /ionic.starter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/ionic.starter.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/package.json -------------------------------------------------------------------------------- /resources/android/icon/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/icon/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/icon/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/icon/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/icon/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/icon/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/icon/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/resources/splash.png -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/app/app.html -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/app/app.scss -------------------------------------------------------------------------------- /src/app/firebase.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/app/firebase.config.ts -------------------------------------------------------------------------------- /src/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/app/main.ts -------------------------------------------------------------------------------- /src/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/assets/images/address-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/images/address-bg.jpg -------------------------------------------------------------------------------- /src/assets/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/images/banner.jpg -------------------------------------------------------------------------------- /src/assets/images/contact-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/images/contact-bg.jpg -------------------------------------------------------------------------------- /src/assets/images/firebase-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/images/firebase-logo.png -------------------------------------------------------------------------------- /src/assets/images/menu-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/images/menu-bg.jpg -------------------------------------------------------------------------------- /src/assets/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/images/profile.png -------------------------------------------------------------------------------- /src/assets/json/about.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/json/about.json -------------------------------------------------------------------------------- /src/assets/json/ecommerce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/json/ecommerce.json -------------------------------------------------------------------------------- /src/assets/json/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/json/event.json -------------------------------------------------------------------------------- /src/assets/json/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/json/gallery.json -------------------------------------------------------------------------------- /src/assets/json/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/json/home.json -------------------------------------------------------------------------------- /src/assets/json/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/json/list.json -------------------------------------------------------------------------------- /src/assets/json/news.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/json/news.json -------------------------------------------------------------------------------- /src/assets/json/notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/json/notification.json -------------------------------------------------------------------------------- /src/assets/json/social.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/assets/json/social.json -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/index.html -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages/contact/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/contact/contact.html -------------------------------------------------------------------------------- /src/pages/contact/contact.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/contact/contact.module.ts -------------------------------------------------------------------------------- /src/pages/contact/contact.scss: -------------------------------------------------------------------------------- 1 | page-contact { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/contact/contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/contact/contact.ts -------------------------------------------------------------------------------- /src/pages/firebase/firebase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/firebase.html -------------------------------------------------------------------------------- /src/pages/firebase/firebase.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/firebase.module.ts -------------------------------------------------------------------------------- /src/pages/firebase/firebase.scss: -------------------------------------------------------------------------------- 1 | page-firebase { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/firebase/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/firebase.ts -------------------------------------------------------------------------------- /src/pages/firebase/form/add-form/add-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/form/add-form/add-form.html -------------------------------------------------------------------------------- /src/pages/firebase/form/add-form/add-form.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/form/add-form/add-form.module.ts -------------------------------------------------------------------------------- /src/pages/firebase/form/add-form/add-form.scss: -------------------------------------------------------------------------------- 1 | page-add-form { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/firebase/form/add-form/add-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/form/add-form/add-form.ts -------------------------------------------------------------------------------- /src/pages/firebase/form/edit-form/edit-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/form/edit-form/edit-form.html -------------------------------------------------------------------------------- /src/pages/firebase/form/edit-form/edit-form.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/form/edit-form/edit-form.module.ts -------------------------------------------------------------------------------- /src/pages/firebase/form/edit-form/edit-form.scss: -------------------------------------------------------------------------------- 1 | page-edit-form { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/firebase/form/edit-form/edit-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/form/edit-form/edit-form.ts -------------------------------------------------------------------------------- /src/pages/firebase/form/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/form/form.html -------------------------------------------------------------------------------- /src/pages/firebase/form/form.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/form/form.module.ts -------------------------------------------------------------------------------- /src/pages/firebase/form/form.scss: -------------------------------------------------------------------------------- 1 | page-form { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/firebase/form/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/form/form.ts -------------------------------------------------------------------------------- /src/pages/firebase/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/login/login.html -------------------------------------------------------------------------------- /src/pages/firebase/login/login.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/login/login.module.ts -------------------------------------------------------------------------------- /src/pages/firebase/login/login.scss: -------------------------------------------------------------------------------- 1 | page-login { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/firebase/login/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/login/login.ts -------------------------------------------------------------------------------- /src/pages/firebase/registration/registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/registration/registration.html -------------------------------------------------------------------------------- /src/pages/firebase/registration/registration.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/registration/registration.module.ts -------------------------------------------------------------------------------- /src/pages/firebase/registration/registration.scss: -------------------------------------------------------------------------------- 1 | page-registration { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/firebase/registration/registration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/firebase/registration/registration.ts -------------------------------------------------------------------------------- /src/pages/functions/ad-mob/ad-mob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/ad-mob/ad-mob.html -------------------------------------------------------------------------------- /src/pages/functions/ad-mob/ad-mob.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/ad-mob/ad-mob.module.ts -------------------------------------------------------------------------------- /src/pages/functions/ad-mob/ad-mob.scss: -------------------------------------------------------------------------------- 1 | page-ad-mob { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/functions/ad-mob/ad-mob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/ad-mob/ad-mob.ts -------------------------------------------------------------------------------- /src/pages/functions/app-rate/app-rate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/app-rate/app-rate.html -------------------------------------------------------------------------------- /src/pages/functions/app-rate/app-rate.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/app-rate/app-rate.module.ts -------------------------------------------------------------------------------- /src/pages/functions/app-rate/app-rate.scss: -------------------------------------------------------------------------------- 1 | page-app-rate { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/functions/app-rate/app-rate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/app-rate/app-rate.ts -------------------------------------------------------------------------------- /src/pages/functions/barcode-scanner/barcode-scanner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/barcode-scanner/barcode-scanner.html -------------------------------------------------------------------------------- /src/pages/functions/barcode-scanner/barcode-scanner.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/barcode-scanner/barcode-scanner.module.ts -------------------------------------------------------------------------------- /src/pages/functions/barcode-scanner/barcode-scanner.scss: -------------------------------------------------------------------------------- 1 | page-barcode-scanner { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/functions/barcode-scanner/barcode-scanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/barcode-scanner/barcode-scanner.ts -------------------------------------------------------------------------------- /src/pages/functions/call-number/call-number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/call-number/call-number.html -------------------------------------------------------------------------------- /src/pages/functions/call-number/call-number.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/call-number/call-number.module.ts -------------------------------------------------------------------------------- /src/pages/functions/call-number/call-number.scss: -------------------------------------------------------------------------------- 1 | page-call-number { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/functions/call-number/call-number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/call-number/call-number.ts -------------------------------------------------------------------------------- /src/pages/functions/camera/camera.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/camera/camera.html -------------------------------------------------------------------------------- /src/pages/functions/camera/camera.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/camera/camera.module.ts -------------------------------------------------------------------------------- /src/pages/functions/camera/camera.scss: -------------------------------------------------------------------------------- 1 | page-camera { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/functions/camera/camera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/camera/camera.ts -------------------------------------------------------------------------------- /src/pages/functions/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/functions.html -------------------------------------------------------------------------------- /src/pages/functions/functions.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/functions.module.ts -------------------------------------------------------------------------------- /src/pages/functions/functions.scss: -------------------------------------------------------------------------------- 1 | page-functions { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/functions/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/functions.ts -------------------------------------------------------------------------------- /src/pages/functions/in-app-browsser/in-app-browsser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/in-app-browsser/in-app-browsser.html -------------------------------------------------------------------------------- /src/pages/functions/in-app-browsser/in-app-browsser.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/in-app-browsser/in-app-browsser.module.ts -------------------------------------------------------------------------------- /src/pages/functions/in-app-browsser/in-app-browsser.scss: -------------------------------------------------------------------------------- 1 | page-in-app-browsser { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/functions/in-app-browsser/in-app-browsser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/in-app-browsser/in-app-browsser.ts -------------------------------------------------------------------------------- /src/pages/functions/local-push/local-push.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/local-push/local-push.html -------------------------------------------------------------------------------- /src/pages/functions/local-push/local-push.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/local-push/local-push.module.ts -------------------------------------------------------------------------------- /src/pages/functions/local-push/local-push.scss: -------------------------------------------------------------------------------- 1 | page-local-push { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/functions/local-push/local-push.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/local-push/local-push.ts -------------------------------------------------------------------------------- /src/pages/functions/map/direction.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/map/direction.directive.ts -------------------------------------------------------------------------------- /src/pages/functions/map/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/map/map.html -------------------------------------------------------------------------------- /src/pages/functions/map/map.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/map/map.module.ts -------------------------------------------------------------------------------- /src/pages/functions/map/map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/map/map.scss -------------------------------------------------------------------------------- /src/pages/functions/map/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/map/map.ts -------------------------------------------------------------------------------- /src/pages/functions/map/styled-map.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/map/styled-map.directive.ts -------------------------------------------------------------------------------- /src/pages/functions/push/push.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/push/push.html -------------------------------------------------------------------------------- /src/pages/functions/push/push.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/push/push.module.ts -------------------------------------------------------------------------------- /src/pages/functions/push/push.scss: -------------------------------------------------------------------------------- 1 | page-push { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/functions/push/push.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/push/push.service.ts -------------------------------------------------------------------------------- /src/pages/functions/push/push.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/push/push.ts -------------------------------------------------------------------------------- /src/pages/functions/social-sharing/social-sharing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/social-sharing/social-sharing.html -------------------------------------------------------------------------------- /src/pages/functions/social-sharing/social-sharing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/social-sharing/social-sharing.module.ts -------------------------------------------------------------------------------- /src/pages/functions/social-sharing/social-sharing.scss: -------------------------------------------------------------------------------- 1 | page-social-sharing { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/functions/social-sharing/social-sharing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/social-sharing/social-sharing.ts -------------------------------------------------------------------------------- /src/pages/functions/video-capture/video-capture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/video-capture/video-capture.html -------------------------------------------------------------------------------- /src/pages/functions/video-capture/video-capture.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/video-capture/video-capture.module.ts -------------------------------------------------------------------------------- /src/pages/functions/video-capture/video-capture.scss: -------------------------------------------------------------------------------- 1 | page-video-capture { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/functions/video-capture/video-capture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/functions/video-capture/video-capture.ts -------------------------------------------------------------------------------- /src/pages/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/home/home.html -------------------------------------------------------------------------------- /src/pages/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/home/home.module.ts -------------------------------------------------------------------------------- /src/pages/home/home.scss: -------------------------------------------------------------------------------- 1 | page-home { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/home/home.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/home/home.service.ts -------------------------------------------------------------------------------- /src/pages/home/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/home/home.ts -------------------------------------------------------------------------------- /src/pages/layouts/about/about.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/about/about.service.ts -------------------------------------------------------------------------------- /src/pages/layouts/about/team-member-full-view/team-member-full-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/about/team-member-full-view/team-member-full-view.html -------------------------------------------------------------------------------- /src/pages/layouts/about/team-member-full-view/team-member-full-view.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/about/team-member-full-view/team-member-full-view.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/about/team-member-full-view/team-member-full-view.scss: -------------------------------------------------------------------------------- 1 | page-team-member-full-view { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/about/team-member-full-view/team-member-full-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/about/team-member-full-view/team-member-full-view.ts -------------------------------------------------------------------------------- /src/pages/layouts/about/team-members/team-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/about/team-members/team-members.html -------------------------------------------------------------------------------- /src/pages/layouts/about/team-members/team-members.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/about/team-members/team-members.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/about/team-members/team-members.scss: -------------------------------------------------------------------------------- 1 | page-team-members { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/about/team-members/team-members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/about/team-members/team-members.ts -------------------------------------------------------------------------------- /src/pages/layouts/chart/chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/chart/chart.html -------------------------------------------------------------------------------- /src/pages/layouts/chart/chart.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/chart/chart.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/chart/chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/chart/chart.scss -------------------------------------------------------------------------------- /src/pages/layouts/chart/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/chart/chart.ts -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/checkout/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/checkout/checkout.html -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/checkout/checkout.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/checkout/checkout.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/checkout/checkout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/checkout/checkout.scss -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/checkout/checkout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/checkout/checkout.ts -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/e-commerce-home/e-commerce-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/e-commerce-home/e-commerce-home.html -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/e-commerce-home/e-commerce-home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/e-commerce-home/e-commerce-home.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/e-commerce-home/e-commerce-home.scss: -------------------------------------------------------------------------------- 1 | page-e-commerce-sale { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/e-commerce-home/e-commerce-home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/e-commerce-home/e-commerce-home.ts -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/ecommerce.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/ecommerce.service.ts -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/product-description/product-description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/product-description/product-description.html -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/product-description/product-description.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/product-description/product-description.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/product-description/product-description.scss: -------------------------------------------------------------------------------- 1 | page-product-description { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/product-description/product-description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/product-description/product-description.ts -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/product-details/product-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/product-details/product-details.html -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/product-details/product-details.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/product-details/product-details.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/product-details/product-details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/product-details/product-details.scss -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/product-details/product-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/product-details/product-details.ts -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/product/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/product/product.html -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/product/product.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/product/product.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/product/product.scss: -------------------------------------------------------------------------------- 1 | page-product { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/e-commerce/product/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/e-commerce/product/product.ts -------------------------------------------------------------------------------- /src/pages/layouts/event/event-details/event-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/event/event-details/event-details.html -------------------------------------------------------------------------------- /src/pages/layouts/event/event-details/event-details.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/event/event-details/event-details.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/event/event-details/event-details.scss: -------------------------------------------------------------------------------- 1 | page-event-details { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/event/event-details/event-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/event/event-details/event-details.ts -------------------------------------------------------------------------------- /src/pages/layouts/event/event.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/event/event.service.ts -------------------------------------------------------------------------------- /src/pages/layouts/event/event/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/event/event/event.html -------------------------------------------------------------------------------- /src/pages/layouts/event/event/event.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/event/event/event.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/event/event/event.scss: -------------------------------------------------------------------------------- 1 | page-event { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/event/event/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/event/event/event.ts -------------------------------------------------------------------------------- /src/pages/layouts/gallery/gallery-full-view/gallery-full-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/gallery/gallery-full-view/gallery-full-view.html -------------------------------------------------------------------------------- /src/pages/layouts/gallery/gallery-full-view/gallery-full-view.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/gallery/gallery-full-view/gallery-full-view.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/gallery/gallery-full-view/gallery-full-view.scss: -------------------------------------------------------------------------------- 1 | page-gallery-full-view { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/gallery/gallery-full-view/gallery-full-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/gallery/gallery-full-view/gallery-full-view.ts -------------------------------------------------------------------------------- /src/pages/layouts/gallery/gallery.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/gallery/gallery.service.ts -------------------------------------------------------------------------------- /src/pages/layouts/gallery/gallery/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/gallery/gallery/gallery.html -------------------------------------------------------------------------------- /src/pages/layouts/gallery/gallery/gallery.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/gallery/gallery/gallery.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/gallery/gallery/gallery.scss: -------------------------------------------------------------------------------- 1 | page-gallery { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/gallery/gallery/gallery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/gallery/gallery/gallery.ts -------------------------------------------------------------------------------- /src/pages/layouts/layouts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/layouts.html -------------------------------------------------------------------------------- /src/pages/layouts/layouts.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/layouts.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/layouts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/layouts.scss -------------------------------------------------------------------------------- /src/pages/layouts/layouts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/layouts.ts -------------------------------------------------------------------------------- /src/pages/layouts/list/list-details/list-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/list/list-details/list-details.html -------------------------------------------------------------------------------- /src/pages/layouts/list/list-details/list-details.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/list/list-details/list-details.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/list/list-details/list-details.scss: -------------------------------------------------------------------------------- 1 | page-list-details { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/list/list-details/list-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/list/list-details/list-details.ts -------------------------------------------------------------------------------- /src/pages/layouts/list/list.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/list/list.service.ts -------------------------------------------------------------------------------- /src/pages/layouts/list/list/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/list/list/list.html -------------------------------------------------------------------------------- /src/pages/layouts/list/list/list.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/list/list/list.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/list/list/list.scss: -------------------------------------------------------------------------------- 1 | page-list { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/list/list/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/list/list/list.ts -------------------------------------------------------------------------------- /src/pages/layouts/news/news-detail/news-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/news/news-detail/news-detail.html -------------------------------------------------------------------------------- /src/pages/layouts/news/news-detail/news-detail.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/news/news-detail/news-detail.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/news/news-detail/news-detail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/news/news-detail/news-detail.scss -------------------------------------------------------------------------------- /src/pages/layouts/news/news-detail/news-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/news/news-detail/news-detail.ts -------------------------------------------------------------------------------- /src/pages/layouts/news/news.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/news/news.service.ts -------------------------------------------------------------------------------- /src/pages/layouts/news/news/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/news/news/news.html -------------------------------------------------------------------------------- /src/pages/layouts/news/news/news.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/news/news/news.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/news/news/news.scss: -------------------------------------------------------------------------------- 1 | page-news { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/news/news/news.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/news/news/news.ts -------------------------------------------------------------------------------- /src/pages/layouts/notifications/notification.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/notifications/notification.service.ts -------------------------------------------------------------------------------- /src/pages/layouts/notifications/notifications-details/notifications-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/notifications/notifications-details/notifications-details.html -------------------------------------------------------------------------------- /src/pages/layouts/notifications/notifications-details/notifications-details.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/notifications/notifications-details/notifications-details.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/notifications/notifications-details/notifications-details.scss: -------------------------------------------------------------------------------- 1 | page-notifications-details { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/notifications/notifications-details/notifications-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/notifications/notifications-details/notifications-details.ts -------------------------------------------------------------------------------- /src/pages/layouts/notifications/notifications/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/notifications/notifications/notifications.html -------------------------------------------------------------------------------- /src/pages/layouts/notifications/notifications/notifications.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/notifications/notifications/notifications.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/notifications/notifications/notifications.scss: -------------------------------------------------------------------------------- 1 | page-notifications { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/notifications/notifications/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/notifications/notifications/notifications.ts -------------------------------------------------------------------------------- /src/pages/layouts/social/comments/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/social/comments/comments.html -------------------------------------------------------------------------------- /src/pages/layouts/social/comments/comments.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/social/comments/comments.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/social/comments/comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/social/comments/comments.scss -------------------------------------------------------------------------------- /src/pages/layouts/social/comments/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/social/comments/comments.ts -------------------------------------------------------------------------------- /src/pages/layouts/social/profile/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/social/profile/profile.html -------------------------------------------------------------------------------- /src/pages/layouts/social/profile/profile.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/social/profile/profile.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/social/profile/profile.scss: -------------------------------------------------------------------------------- 1 | page-profile { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/social/profile/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/social/profile/profile.ts -------------------------------------------------------------------------------- /src/pages/layouts/social/social-home/social-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/social/social-home/social-home.html -------------------------------------------------------------------------------- /src/pages/layouts/social/social-home/social-home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/social/social-home/social-home.module.ts -------------------------------------------------------------------------------- /src/pages/layouts/social/social-home/social-home.scss: -------------------------------------------------------------------------------- 1 | page-social-home { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/layouts/social/social-home/social-home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/social/social-home/social-home.ts -------------------------------------------------------------------------------- /src/pages/layouts/social/social.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/layouts/social/social.service.ts -------------------------------------------------------------------------------- /src/pages/settings/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/settings/settings.html -------------------------------------------------------------------------------- /src/pages/settings/settings.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/settings/settings.module.ts -------------------------------------------------------------------------------- /src/pages/settings/settings.scss: -------------------------------------------------------------------------------- 1 | page-settings { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/pages/settings/settings.ts -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/theme/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common.scss -------------------------------------------------------------------------------- /src/theme/common/about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common/about.scss -------------------------------------------------------------------------------- /src/theme/common/color-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common/color-theme.scss -------------------------------------------------------------------------------- /src/theme/common/components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common/components.scss -------------------------------------------------------------------------------- /src/theme/common/e-commerce.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common/e-commerce.scss -------------------------------------------------------------------------------- /src/theme/common/event.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common/event.scss -------------------------------------------------------------------------------- /src/theme/common/firebase.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common/firebase.scss -------------------------------------------------------------------------------- /src/theme/common/functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common/functions.scss -------------------------------------------------------------------------------- /src/theme/common/gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common/gallery.scss -------------------------------------------------------------------------------- /src/theme/common/layouts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common/layouts.scss -------------------------------------------------------------------------------- /src/theme/common/list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common/list.scss -------------------------------------------------------------------------------- /src/theme/common/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common/menu.scss -------------------------------------------------------------------------------- /src/theme/common/notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common/notifications.scss -------------------------------------------------------------------------------- /src/theme/common/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common/settings.scss -------------------------------------------------------------------------------- /src/theme/common/social.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/common/social.scss -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/Ionic3-starterapp/HEAD/tslint.json --------------------------------------------------------------------------------