├── .firebaserc ├── .gitignore ├── CHANGELOG.md ├── README.md ├── angular.json ├── config.xml ├── firebase.json ├── functions ├── lib │ ├── fcm.js │ ├── fcm.js.map │ ├── index.js │ └── index.js.map ├── package-lock.json ├── package.json ├── src │ ├── fcm.ts │ └── index.ts ├── tsconfig.json └── tslint.json ├── ionic.config.json ├── package.json ├── resources ├── README.md ├── 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 ├── icon.png.md5 ├── ios │ ├── icon │ │ ├── icon-1024.png │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-50.png │ │ ├── icon-50@2x.png │ │ ├── icon-60.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ ├── icon-83.5@2x.png │ │ ├── icon-small.png │ │ ├── icon-small@2x.png │ │ ├── icon-small@3x.png │ │ ├── icon.png │ │ └── icon@2x.png │ └── splash │ │ ├── Default-568h@2x~iphone.png │ │ ├── Default-667h.png │ │ ├── Default-736h.png │ │ ├── Default-Landscape-736h.png │ │ ├── Default-Landscape@2x~ipad.png │ │ ├── Default-Landscape@~ipadpro.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default-Portrait@2x~ipad.png │ │ ├── Default-Portrait@~ipadpro.png │ │ ├── Default-Portrait~ipad.png │ │ ├── Default@2x~iphone.png │ │ ├── Default@2x~universal~anyany.png │ │ └── Default~iphone.png ├── splash.png └── splash.png.md5 ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── fcm │ │ ├── fcm.module.ts │ │ ├── fcm.page.html │ │ ├── fcm.page.scss │ │ ├── fcm.page.spec.ts │ │ └── fcm.page.ts │ ├── guards │ │ ├── auth.guard.ts │ │ └── tutorial.guard.ts │ ├── home │ │ ├── home.module.ts │ │ ├── home.page.html │ │ ├── home.page.scss │ │ ├── home.page.spec.ts │ │ └── home.page.ts │ ├── services │ │ ├── auth.service.ts │ │ ├── db.service.ts │ │ └── fcm.service.ts │ ├── shared │ │ ├── device │ │ │ ├── device.component.html │ │ │ ├── device.component.scss │ │ │ ├── device.component.spec.ts │ │ │ └── device.component.ts │ │ ├── login │ │ │ ├── login.component.html │ │ │ ├── login.component.scss │ │ │ ├── login.component.spec.ts │ │ │ └── login.component.ts │ │ ├── profile │ │ │ ├── profile.component.html │ │ │ ├── profile.component.scss │ │ │ ├── profile.component.spec.ts │ │ │ └── profile.component.ts │ │ └── shared.module.ts │ ├── todo │ │ ├── todo-detail │ │ │ ├── todo-detail.component.html │ │ │ ├── todo-detail.component.scss │ │ │ ├── todo-detail.component.spec.ts │ │ │ └── todo-detail.component.ts │ │ ├── todo-form │ │ │ ├── todo-form.component.html │ │ │ ├── todo-form.component.scss │ │ │ ├── todo-form.component.spec.ts │ │ │ └── todo-form.component.ts │ │ ├── todo.module.ts │ │ ├── todo.page.html │ │ ├── todo.page.scss │ │ ├── todo.page.spec.ts │ │ └── todo.page.ts │ └── tutorial │ │ ├── tutorial.module.ts │ │ ├── tutorial.page.html │ │ ├── tutorial.page.scss │ │ ├── tutorial.page.spec.ts │ │ └── tutorial.page.ts ├── assets │ ├── fonts │ │ ├── Cairo │ │ │ ├── Cairo-Black.ttf │ │ │ ├── Cairo-Bold.ttf │ │ │ ├── Cairo-ExtraLight.ttf │ │ │ ├── Cairo-Light.ttf │ │ │ ├── Cairo-Regular.ttf │ │ │ ├── Cairo-SemiBold.ttf │ │ │ └── OFL.txt │ │ └── Rokkitt │ │ │ ├── OFL.txt │ │ │ ├── Rokkitt-Black.ttf │ │ │ ├── Rokkitt-Bold.ttf │ │ │ ├── Rokkitt-ExtraBold.ttf │ │ │ ├── Rokkitt-ExtraLight.ttf │ │ │ ├── Rokkitt-Light.ttf │ │ │ ├── Rokkitt-Medium.ttf │ │ │ ├── Rokkitt-Regular.ttf │ │ │ ├── Rokkitt-SemiBold.ttf │ │ │ └── Rokkitt-Thin.ttf │ ├── icon │ │ ├── anon.svg │ │ └── favicon.png │ └── slides │ │ ├── step1.svg │ │ ├── step2.svg │ │ └── step3.svg ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── firebase-messaging-sw.js ├── global.scss ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── test.ts ├── theme │ └── variables.scss ├── tsconfig.app.json └── tsconfig.spec.json ├── tsconfig.json └── tslint.json /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/angular.json -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/config.xml -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/firebase.json -------------------------------------------------------------------------------- /functions/lib/fcm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/functions/lib/fcm.js -------------------------------------------------------------------------------- /functions/lib/fcm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/functions/lib/fcm.js.map -------------------------------------------------------------------------------- /functions/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/functions/lib/index.js -------------------------------------------------------------------------------- /functions/lib/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/functions/lib/index.js.map -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/src/fcm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/functions/src/fcm.ts -------------------------------------------------------------------------------- /functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/functions/src/index.ts -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/functions/tsconfig.json -------------------------------------------------------------------------------- /functions/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/functions/tslint.json -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/ionic.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/package.json -------------------------------------------------------------------------------- /resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/README.md -------------------------------------------------------------------------------- /resources/android/icon/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/icon/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/icon/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/icon/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/icon/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/icon/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/icon/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/icon.png.md5: -------------------------------------------------------------------------------- 1 | 204d2f754edfb554ceba627bbb51b3c5 -------------------------------------------------------------------------------- /resources/ios/icon/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-1024.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-40.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-40@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-50.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-60.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-72.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-76.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-83.5@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-small.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon.png -------------------------------------------------------------------------------- /resources/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/splash/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/splash/Default-667h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/splash/Default-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/splash/Default-Landscape-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/splash/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape@~ipadpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/splash/Default-Landscape@~ipadpro.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/splash/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/splash/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait@~ipadpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/splash/Default-Portrait@~ipadpro.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/splash/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/splash/Default@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default@2x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/splash/Default@2x~universal~anyany.png -------------------------------------------------------------------------------- /resources/ios/splash/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/ios/splash/Default~iphone.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/resources/splash.png -------------------------------------------------------------------------------- /resources/splash.png.md5: -------------------------------------------------------------------------------- 1 | abcef3c44b3de85c85835f4ff27dd72e -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/fcm/fcm.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/fcm/fcm.module.ts -------------------------------------------------------------------------------- /src/app/fcm/fcm.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/fcm/fcm.page.html -------------------------------------------------------------------------------- /src/app/fcm/fcm.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/fcm/fcm.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/fcm/fcm.page.spec.ts -------------------------------------------------------------------------------- /src/app/fcm/fcm.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/fcm/fcm.page.ts -------------------------------------------------------------------------------- /src/app/guards/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/guards/auth.guard.ts -------------------------------------------------------------------------------- /src/app/guards/tutorial.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/guards/tutorial.guard.ts -------------------------------------------------------------------------------- /src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/home/home.module.ts -------------------------------------------------------------------------------- /src/app/home/home.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/home/home.page.html -------------------------------------------------------------------------------- /src/app/home/home.page.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/app/home/home.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/home/home.page.spec.ts -------------------------------------------------------------------------------- /src/app/home/home.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/home/home.page.ts -------------------------------------------------------------------------------- /src/app/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/services/db.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/services/db.service.ts -------------------------------------------------------------------------------- /src/app/services/fcm.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/services/fcm.service.ts -------------------------------------------------------------------------------- /src/app/shared/device/device.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/shared/device/device.component.html -------------------------------------------------------------------------------- /src/app/shared/device/device.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/device/device.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/shared/device/device.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/device/device.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/shared/device/device.component.ts -------------------------------------------------------------------------------- /src/app/shared/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/shared/login/login.component.html -------------------------------------------------------------------------------- /src/app/shared/login/login.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/shared/login/login.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/shared/login/login.component.ts -------------------------------------------------------------------------------- /src/app/shared/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/shared/profile/profile.component.html -------------------------------------------------------------------------------- /src/app/shared/profile/profile.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/shared/profile/profile.component.scss -------------------------------------------------------------------------------- /src/app/shared/profile/profile.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/shared/profile/profile.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/shared/profile/profile.component.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/todo/todo-detail/todo-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/todo/todo-detail/todo-detail.component.html -------------------------------------------------------------------------------- /src/app/todo/todo-detail/todo-detail.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/todo/todo-detail/todo-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/todo/todo-detail/todo-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/todo/todo-detail/todo-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/todo/todo-detail/todo-detail.component.ts -------------------------------------------------------------------------------- /src/app/todo/todo-form/todo-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/todo/todo-form/todo-form.component.html -------------------------------------------------------------------------------- /src/app/todo/todo-form/todo-form.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/todo/todo-form/todo-form.component.scss -------------------------------------------------------------------------------- /src/app/todo/todo-form/todo-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/todo/todo-form/todo-form.component.spec.ts -------------------------------------------------------------------------------- /src/app/todo/todo-form/todo-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/todo/todo-form/todo-form.component.ts -------------------------------------------------------------------------------- /src/app/todo/todo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/todo/todo.module.ts -------------------------------------------------------------------------------- /src/app/todo/todo.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/todo/todo.page.html -------------------------------------------------------------------------------- /src/app/todo/todo.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/todo/todo.page.scss -------------------------------------------------------------------------------- /src/app/todo/todo.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/todo/todo.page.spec.ts -------------------------------------------------------------------------------- /src/app/todo/todo.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/todo/todo.page.ts -------------------------------------------------------------------------------- /src/app/tutorial/tutorial.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/tutorial/tutorial.module.ts -------------------------------------------------------------------------------- /src/app/tutorial/tutorial.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/tutorial/tutorial.page.html -------------------------------------------------------------------------------- /src/app/tutorial/tutorial.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/tutorial/tutorial.page.scss -------------------------------------------------------------------------------- /src/app/tutorial/tutorial.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/tutorial/tutorial.page.spec.ts -------------------------------------------------------------------------------- /src/app/tutorial/tutorial.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/app/tutorial/tutorial.page.ts -------------------------------------------------------------------------------- /src/assets/fonts/Cairo/Cairo-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Cairo/Cairo-Black.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Cairo/Cairo-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Cairo/Cairo-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Cairo/Cairo-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Cairo/Cairo-ExtraLight.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Cairo/Cairo-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Cairo/Cairo-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Cairo/Cairo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Cairo/Cairo-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Cairo/Cairo-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Cairo/Cairo-SemiBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Cairo/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Cairo/OFL.txt -------------------------------------------------------------------------------- /src/assets/fonts/Rokkitt/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Rokkitt/OFL.txt -------------------------------------------------------------------------------- /src/assets/fonts/Rokkitt/Rokkitt-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Rokkitt/Rokkitt-Black.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rokkitt/Rokkitt-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Rokkitt/Rokkitt-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rokkitt/Rokkitt-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Rokkitt/Rokkitt-ExtraBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rokkitt/Rokkitt-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Rokkitt/Rokkitt-ExtraLight.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rokkitt/Rokkitt-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Rokkitt/Rokkitt-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rokkitt/Rokkitt-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Rokkitt/Rokkitt-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rokkitt/Rokkitt-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Rokkitt/Rokkitt-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rokkitt/Rokkitt-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Rokkitt/Rokkitt-SemiBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rokkitt/Rokkitt-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/fonts/Rokkitt/Rokkitt-Thin.ttf -------------------------------------------------------------------------------- /src/assets/icon/anon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/icon/anon.svg -------------------------------------------------------------------------------- /src/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/icon/favicon.png -------------------------------------------------------------------------------- /src/assets/slides/step1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/slides/step1.svg -------------------------------------------------------------------------------- /src/assets/slides/step2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/slides/step2.svg -------------------------------------------------------------------------------- /src/assets/slides/step3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/assets/slides/step3.svg -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/firebase-messaging-sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/firebase-messaging-sw.js -------------------------------------------------------------------------------- /src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/global.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/ionic4-master-course/HEAD/tslint.json --------------------------------------------------------------------------------