├── .editorconfig ├── .gitignore ├── README.md ├── config.xml ├── ionic.config.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 ├── 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~ipad.png │ │ ├── Default-Portrait@2x~ipad.png │ │ ├── Default-Portrait~ipad.png │ │ ├── Default@2x~iphone.png │ │ └── Default~iphone.png └── splash.png ├── scrolltabs.zip ├── src ├── app │ ├── app.component.ts │ ├── app.html │ ├── app.module.ts │ ├── app.scss │ └── main.ts ├── assets │ └── icon │ │ └── favicon.ico ├── components │ └── scrolltabs │ │ ├── index.ts │ │ ├── scrolltab.ts │ │ ├── scrolltabs.html │ │ ├── scrolltabs.module.ts │ │ ├── scrolltabs.scss │ │ └── scrolltabs.ts ├── declarations.d.ts ├── index.html ├── manifest.json ├── pages │ ├── hello-ionic │ │ ├── hello-ionic.html │ │ ├── hello-ionic.module.ts │ │ ├── hello-ionic.scss │ │ └── hello-ionic.ts │ ├── item-details │ │ ├── item-details.html │ │ ├── item-details.scss │ │ └── item-details.ts │ └── list │ │ ├── list.html │ │ ├── list.scss │ │ └── list.ts ├── service-worker.js └── theme │ └── variables.scss ├── tsconfig.json ├── tslint.json └── typings └── cordova-typings.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/README.md -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/config.xml -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/ionic.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/package.json -------------------------------------------------------------------------------- /resources/android/icon/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/icon/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/icon/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/icon/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/icon/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/icon/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/icon/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-40.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-40@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-50.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-60.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-72.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-76.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-83.5@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-small.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon.png -------------------------------------------------------------------------------- /resources/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/splash/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/splash/Default-667h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/splash/Default-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/splash/Default-Landscape-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/splash/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/splash/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/splash/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/splash/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/splash/Default@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/ios/splash/Default~iphone.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/resources/splash.png -------------------------------------------------------------------------------- /scrolltabs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/scrolltabs.zip -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/app/app.html -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/app/app.scss -------------------------------------------------------------------------------- /src/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/app/main.ts -------------------------------------------------------------------------------- /src/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/components/scrolltabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/components/scrolltabs/index.ts -------------------------------------------------------------------------------- /src/components/scrolltabs/scrolltab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/components/scrolltabs/scrolltab.ts -------------------------------------------------------------------------------- /src/components/scrolltabs/scrolltabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/components/scrolltabs/scrolltabs.html -------------------------------------------------------------------------------- /src/components/scrolltabs/scrolltabs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/components/scrolltabs/scrolltabs.module.ts -------------------------------------------------------------------------------- /src/components/scrolltabs/scrolltabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/components/scrolltabs/scrolltabs.scss -------------------------------------------------------------------------------- /src/components/scrolltabs/scrolltabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/components/scrolltabs/scrolltabs.ts -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/index.html -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages/hello-ionic/hello-ionic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/pages/hello-ionic/hello-ionic.html -------------------------------------------------------------------------------- /src/pages/hello-ionic/hello-ionic.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/pages/hello-ionic/hello-ionic.module.ts -------------------------------------------------------------------------------- /src/pages/hello-ionic/hello-ionic.scss: -------------------------------------------------------------------------------- 1 | page-hello-ionic { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/hello-ionic/hello-ionic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/pages/hello-ionic/hello-ionic.ts -------------------------------------------------------------------------------- /src/pages/item-details/item-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/pages/item-details/item-details.html -------------------------------------------------------------------------------- /src/pages/item-details/item-details.scss: -------------------------------------------------------------------------------- 1 | page-item-details { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/item-details/item-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/pages/item-details/item-details.ts -------------------------------------------------------------------------------- /src/pages/list/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/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/quanganh206/ionic2-scrolltabs/HEAD/src/pages/list/list.ts -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/tslint.json -------------------------------------------------------------------------------- /typings/cordova-typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanganh206/ionic2-scrolltabs/HEAD/typings/cordova-typings.d.ts --------------------------------------------------------------------------------