├── .editorconfig ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config.xml ├── config └── uglifyjs.config.js ├── icons ├── android │ └── icon.png ├── ios │ └── icon.png └── splash.png ├── ionic.config.json ├── package.json ├── post_install.sh ├── screenshots ├── android-ios-phone.jpg ├── android-tablet.png ├── ios-tablet.png ├── phone1.png ├── phone2.png └── tablet2.png ├── src ├── app │ ├── app.component.ts │ ├── app.html │ ├── app.module.ts │ ├── app.scss │ └── main.ts ├── assets │ ├── icon │ │ └── favicon.ico │ └── img │ │ ├── clear-day.png │ │ ├── clear-night.png │ │ ├── cloudy.png │ │ ├── default.png │ │ ├── fog.png │ │ ├── logo.png │ │ ├── menu.jpg │ │ ├── partly-cloudy-day.png │ │ ├── partly-cloudy-night.png │ │ ├── rain.png │ │ ├── sleet.png │ │ ├── snow.png │ │ ├── sunrise.png │ │ ├── sunset.png │ │ └── wind.png ├── components │ ├── components.module.ts │ ├── index.ts │ └── weather-list │ │ ├── weather-list.html │ │ ├── weather-list.scss │ │ └── weather-list.ts ├── directives │ ├── animate-item-sliding │ │ └── animate-item-sliding.ts │ ├── directives.module.ts │ └── index.ts ├── index.html ├── manifest.json ├── pages │ ├── city-weather │ │ ├── city-weather.html │ │ ├── city-weather.module.ts │ │ ├── city-weather.scss │ │ └── city-weather.ts │ ├── home-weather │ │ ├── home-weather.html │ │ ├── home-weather.module.ts │ │ ├── home-weather.scss │ │ └── home-weather.ts │ ├── location │ │ ├── location.html │ │ ├── location.module.ts │ │ ├── location.scss │ │ └── location.ts │ ├── settings │ │ ├── settings.html │ │ ├── settings.module.ts │ │ └── settings.ts │ ├── tabs │ │ ├── tabs.html │ │ ├── tabs.module.ts │ │ ├── tabs.scss │ │ └── tabs.ts │ ├── weather-detail │ │ ├── weather-detail.html │ │ ├── weather-detail.module.ts │ │ ├── weather-detail.scss │ │ └── weather-detail.ts │ └── world-city-list │ │ ├── world-city-list.html │ │ ├── world-city-list.module.ts │ │ ├── world-city-list.scss │ │ └── world-city-list.ts ├── providers │ ├── constants.ts │ ├── database.service.ts │ ├── forecast.service.ts │ ├── index.ts │ ├── model.ts │ ├── sql.ts │ └── util.service.ts ├── service-worker.js └── theme │ └── variables.scss ├── tsconfig.json ├── tslint.json └── www └── .gitignore /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/README.md -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/config.xml -------------------------------------------------------------------------------- /config/uglifyjs.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/config/uglifyjs.config.js -------------------------------------------------------------------------------- /icons/android/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/icons/android/icon.png -------------------------------------------------------------------------------- /icons/ios/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/icons/ios/icon.png -------------------------------------------------------------------------------- /icons/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/icons/splash.png -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/ionic.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/package.json -------------------------------------------------------------------------------- /post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/post_install.sh -------------------------------------------------------------------------------- /screenshots/android-ios-phone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/screenshots/android-ios-phone.jpg -------------------------------------------------------------------------------- /screenshots/android-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/screenshots/android-tablet.png -------------------------------------------------------------------------------- /screenshots/ios-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/screenshots/ios-tablet.png -------------------------------------------------------------------------------- /screenshots/phone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/screenshots/phone1.png -------------------------------------------------------------------------------- /screenshots/phone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/screenshots/phone2.png -------------------------------------------------------------------------------- /screenshots/tablet2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/screenshots/tablet2.png -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/app/app.html -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/app/app.scss -------------------------------------------------------------------------------- /src/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/app/main.ts -------------------------------------------------------------------------------- /src/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/assets/img/clear-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/clear-day.png -------------------------------------------------------------------------------- /src/assets/img/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/clear-night.png -------------------------------------------------------------------------------- /src/assets/img/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/cloudy.png -------------------------------------------------------------------------------- /src/assets/img/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/default.png -------------------------------------------------------------------------------- /src/assets/img/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/fog.png -------------------------------------------------------------------------------- /src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/logo.png -------------------------------------------------------------------------------- /src/assets/img/menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/menu.jpg -------------------------------------------------------------------------------- /src/assets/img/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/partly-cloudy-day.png -------------------------------------------------------------------------------- /src/assets/img/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/partly-cloudy-night.png -------------------------------------------------------------------------------- /src/assets/img/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/rain.png -------------------------------------------------------------------------------- /src/assets/img/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/sleet.png -------------------------------------------------------------------------------- /src/assets/img/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/snow.png -------------------------------------------------------------------------------- /src/assets/img/sunrise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/sunrise.png -------------------------------------------------------------------------------- /src/assets/img/sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/sunset.png -------------------------------------------------------------------------------- /src/assets/img/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/assets/img/wind.png -------------------------------------------------------------------------------- /src/components/components.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/components/components.module.ts -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/weather-list/weather-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/components/weather-list/weather-list.html -------------------------------------------------------------------------------- /src/components/weather-list/weather-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/components/weather-list/weather-list.scss -------------------------------------------------------------------------------- /src/components/weather-list/weather-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/components/weather-list/weather-list.ts -------------------------------------------------------------------------------- /src/directives/animate-item-sliding/animate-item-sliding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/directives/animate-item-sliding/animate-item-sliding.ts -------------------------------------------------------------------------------- /src/directives/directives.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/directives/directives.module.ts -------------------------------------------------------------------------------- /src/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/directives/index.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/index.html -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages/city-weather/city-weather.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/city-weather/city-weather.html -------------------------------------------------------------------------------- /src/pages/city-weather/city-weather.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/city-weather/city-weather.module.ts -------------------------------------------------------------------------------- /src/pages/city-weather/city-weather.scss: -------------------------------------------------------------------------------- 1 | page-city-weather { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/city-weather/city-weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/city-weather/city-weather.ts -------------------------------------------------------------------------------- /src/pages/home-weather/home-weather.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/home-weather/home-weather.html -------------------------------------------------------------------------------- /src/pages/home-weather/home-weather.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/home-weather/home-weather.module.ts -------------------------------------------------------------------------------- /src/pages/home-weather/home-weather.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/home-weather/home-weather.scss -------------------------------------------------------------------------------- /src/pages/home-weather/home-weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/home-weather/home-weather.ts -------------------------------------------------------------------------------- /src/pages/location/location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/location/location.html -------------------------------------------------------------------------------- /src/pages/location/location.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/location/location.module.ts -------------------------------------------------------------------------------- /src/pages/location/location.scss: -------------------------------------------------------------------------------- 1 | page-location { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/location/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/location/location.ts -------------------------------------------------------------------------------- /src/pages/settings/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/settings/settings.html -------------------------------------------------------------------------------- /src/pages/settings/settings.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/settings/settings.module.ts -------------------------------------------------------------------------------- /src/pages/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/settings/settings.ts -------------------------------------------------------------------------------- /src/pages/tabs/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/tabs/tabs.html -------------------------------------------------------------------------------- /src/pages/tabs/tabs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/tabs/tabs.module.ts -------------------------------------------------------------------------------- /src/pages/tabs/tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/tabs/tabs.scss -------------------------------------------------------------------------------- /src/pages/tabs/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/tabs/tabs.ts -------------------------------------------------------------------------------- /src/pages/weather-detail/weather-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/weather-detail/weather-detail.html -------------------------------------------------------------------------------- /src/pages/weather-detail/weather-detail.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/weather-detail/weather-detail.module.ts -------------------------------------------------------------------------------- /src/pages/weather-detail/weather-detail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/weather-detail/weather-detail.scss -------------------------------------------------------------------------------- /src/pages/weather-detail/weather-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/weather-detail/weather-detail.ts -------------------------------------------------------------------------------- /src/pages/world-city-list/world-city-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/world-city-list/world-city-list.html -------------------------------------------------------------------------------- /src/pages/world-city-list/world-city-list.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/world-city-list/world-city-list.module.ts -------------------------------------------------------------------------------- /src/pages/world-city-list/world-city-list.scss: -------------------------------------------------------------------------------- 1 | page-world-city-list { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/world-city-list/world-city-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/pages/world-city-list/world-city-list.ts -------------------------------------------------------------------------------- /src/providers/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/providers/constants.ts -------------------------------------------------------------------------------- /src/providers/database.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/providers/database.service.ts -------------------------------------------------------------------------------- /src/providers/forecast.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/providers/forecast.service.ts -------------------------------------------------------------------------------- /src/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/providers/index.ts -------------------------------------------------------------------------------- /src/providers/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/providers/model.ts -------------------------------------------------------------------------------- /src/providers/sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/providers/sql.ts -------------------------------------------------------------------------------- /src/providers/util.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/providers/util.service.ts -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggarwalankush/ionic-mosum/HEAD/tslint.json -------------------------------------------------------------------------------- /www/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | --------------------------------------------------------------------------------