├── .editorconfig ├── .gitignore ├── .io-config.json ├── config.xml ├── ionic.config.json ├── package.json ├── readme.md ├── 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 ├── ios │ ├── icon │ │ ├── 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~iphone.png └── splash.png ├── src ├── app │ ├── app.component.ts │ ├── app.html │ ├── app.module.ts │ ├── app.scss │ └── main.ts ├── assets │ ├── data.json │ ├── icon │ │ └── favicon.ico │ └── img │ │ ├── backgrounds │ │ ├── img1.png │ │ ├── img2.png │ │ └── img3.png │ │ └── logo.png ├── declarations.d.ts ├── index.html ├── manifest.json ├── pages │ ├── category │ │ ├── category.html │ │ ├── category.scss │ │ └── category.ts │ ├── home │ │ ├── home.html │ │ ├── home.scss │ │ └── home.ts │ ├── list │ │ ├── list.html │ │ ├── list.scss │ │ └── list.ts │ ├── single-item │ │ ├── single-item.html │ │ ├── single-item.scss │ │ └── single-item.ts │ └── tabs │ │ ├── tabs.html │ │ └── tabs.ts ├── service-worker.js ├── services │ ├── item-api.service.ts │ └── service.ts └── theme │ └── variables.scss ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.io-config.json: -------------------------------------------------------------------------------- 1 | {"app_id":"d18aae7e"} -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/config.xml -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/ionic.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/readme.md -------------------------------------------------------------------------------- /resources/android/icon/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/icon/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/icon/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/icon/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/icon/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/icon/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/icon/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-40.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-40@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-50.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-60.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-72.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-76.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-83.5@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-small.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon.png -------------------------------------------------------------------------------- /resources/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/splash/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/splash/Default-667h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/splash/Default-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/splash/Default-Landscape-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/splash/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape@~ipadpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/splash/Default-Landscape@~ipadpro.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/splash/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/splash/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait@~ipadpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/splash/Default-Portrait@~ipadpro.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/splash/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/splash/Default@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/ios/splash/Default~iphone.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/resources/splash.png -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/app/app.html -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/app/app.scss -------------------------------------------------------------------------------- /src/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/app/main.ts -------------------------------------------------------------------------------- /src/assets/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/assets/data.json -------------------------------------------------------------------------------- /src/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/assets/img/backgrounds/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/assets/img/backgrounds/img1.png -------------------------------------------------------------------------------- /src/assets/img/backgrounds/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/assets/img/backgrounds/img2.png -------------------------------------------------------------------------------- /src/assets/img/backgrounds/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/assets/img/backgrounds/img3.png -------------------------------------------------------------------------------- /src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/assets/img/logo.png -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/index.html -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages/category/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/pages/category/category.html -------------------------------------------------------------------------------- /src/pages/category/category.scss: -------------------------------------------------------------------------------- 1 | page-category { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/category/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/pages/category/category.ts -------------------------------------------------------------------------------- /src/pages/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/pages/home/home.html -------------------------------------------------------------------------------- /src/pages/home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/pages/home/home.scss -------------------------------------------------------------------------------- /src/pages/home/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/pages/home/home.ts -------------------------------------------------------------------------------- /src/pages/list/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/pages/list/list.html -------------------------------------------------------------------------------- /src/pages/list/list.scss: -------------------------------------------------------------------------------- 1 | page-list { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/list/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/pages/list/list.ts -------------------------------------------------------------------------------- /src/pages/single-item/single-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/pages/single-item/single-item.html -------------------------------------------------------------------------------- /src/pages/single-item/single-item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/pages/single-item/single-item.scss -------------------------------------------------------------------------------- /src/pages/single-item/single-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/pages/single-item/single-item.ts -------------------------------------------------------------------------------- /src/pages/tabs/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/pages/tabs/tabs.html -------------------------------------------------------------------------------- /src/pages/tabs/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/pages/tabs/tabs.ts -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/services/item-api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/services/item-api.service.ts -------------------------------------------------------------------------------- /src/services/service.ts: -------------------------------------------------------------------------------- 1 | export * from './item-api.service'; 2 | -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristofferandreasen/simple-ionic-3-app/HEAD/tslint.json --------------------------------------------------------------------------------