├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── README.md ├── app ├── App_Resources │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── app.gradle │ │ ├── drawable-hdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── drawable-ldpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── drawable-mdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── drawable-nodpi │ │ │ └── splash_screen.xml │ │ ├── drawable-xhdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── drawable-xxhdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── drawable-xxxhdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── values-v21 │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ └── iOS │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── icon-29.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-50.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-57.png │ │ │ ├── icon-57@2x.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 │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Landscape@2x.png │ │ │ ├── Default-Landscape@3x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ └── Default@2x.png │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ └── LaunchScreen-AspectFill@2x.png │ │ └── LaunchScreen.Center.imageset │ │ │ ├── LaunchScreen-Center.png │ │ │ └── LaunchScreen-Center@2x.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── build.xcconfig ├── app.android.css ├── app.component.html ├── app.component.ts ├── app.css ├── app.ios.css ├── app.minWH320.css ├── app.minWH480.css ├── app.minWH600.css ├── app.minWHdefault.css ├── app.module.ts ├── app.routing.ts ├── components │ ├── forecast-card │ │ ├── forecast-card.component.html │ │ └── forecast-card.component.ts │ ├── forecast │ │ ├── forecast.component.android.html │ │ ├── forecast.component.ios.html │ │ └── forecast.component.ts │ ├── index.ts │ ├── locations │ │ ├── locations.component.css │ │ ├── locations.component.html │ │ └── locations.component.ts │ └── networkIssue │ │ └── networkIssue.component.ts ├── font-awesome.css ├── fonts │ ├── Lato-Black.ttf │ ├── Lato-Bold.ttf │ ├── Lato-Regular.ttf │ ├── RobotoRegular.ttf │ ├── fontawesome-webfont.ttf │ └── weathericons-regular-webfont.ttf ├── images │ └── FFFFFF-0.png ├── main.aot.ts ├── main.ts ├── package.json ├── services │ ├── connection.service.ts │ ├── forecast.io.services.ts │ ├── index.ts │ ├── location.service.ts │ ├── page-dimensions.service.ts │ └── positioning.service.ts ├── theme-natural.css ├── theme-night.css ├── tns-java-classes.js └── weather-icons.css ├── lib └── iOS │ └── TNSWidgets.framework │ ├── Headers │ ├── TNSLabel.h │ ├── TNSWidgets.h │ └── UIImage+TNSBlocks.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ └── TNSWidgets ├── package.json ├── splash_logo.pxm ├── tsconfig.json ├── weather-cards.gif └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/README.md -------------------------------------------------------------------------------- /app/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-hdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-ldpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-mdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/values-v21/colors.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/values-v21/styles.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/values/colors.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/Android/values/styles.xml -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /app/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /app/app.android.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/app.android.css -------------------------------------------------------------------------------- /app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/app.component.html -------------------------------------------------------------------------------- /app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/app.component.ts -------------------------------------------------------------------------------- /app/app.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/app.ios.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/app.ios.css -------------------------------------------------------------------------------- /app/app.minWH320.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/app.minWH320.css -------------------------------------------------------------------------------- /app/app.minWH480.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/app.minWH480.css -------------------------------------------------------------------------------- /app/app.minWH600.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/app.minWH600.css -------------------------------------------------------------------------------- /app/app.minWHdefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/app.minWHdefault.css -------------------------------------------------------------------------------- /app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/app.module.ts -------------------------------------------------------------------------------- /app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/app.routing.ts -------------------------------------------------------------------------------- /app/components/forecast-card/forecast-card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/components/forecast-card/forecast-card.component.html -------------------------------------------------------------------------------- /app/components/forecast-card/forecast-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/components/forecast-card/forecast-card.component.ts -------------------------------------------------------------------------------- /app/components/forecast/forecast.component.android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/components/forecast/forecast.component.android.html -------------------------------------------------------------------------------- /app/components/forecast/forecast.component.ios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/components/forecast/forecast.component.ios.html -------------------------------------------------------------------------------- /app/components/forecast/forecast.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/components/forecast/forecast.component.ts -------------------------------------------------------------------------------- /app/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/components/index.ts -------------------------------------------------------------------------------- /app/components/locations/locations.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/components/locations/locations.component.css -------------------------------------------------------------------------------- /app/components/locations/locations.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/components/locations/locations.component.html -------------------------------------------------------------------------------- /app/components/locations/locations.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/components/locations/locations.component.ts -------------------------------------------------------------------------------- /app/components/networkIssue/networkIssue.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/components/networkIssue/networkIssue.component.ts -------------------------------------------------------------------------------- /app/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/font-awesome.css -------------------------------------------------------------------------------- /app/fonts/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/fonts/Lato-Black.ttf -------------------------------------------------------------------------------- /app/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /app/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /app/fonts/RobotoRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/fonts/RobotoRegular.ttf -------------------------------------------------------------------------------- /app/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/fonts/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/fonts/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /app/images/FFFFFF-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/images/FFFFFF-0.png -------------------------------------------------------------------------------- /app/main.aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/main.aot.ts -------------------------------------------------------------------------------- /app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/main.ts -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/package.json -------------------------------------------------------------------------------- /app/services/connection.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/services/connection.service.ts -------------------------------------------------------------------------------- /app/services/forecast.io.services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/services/forecast.io.services.ts -------------------------------------------------------------------------------- /app/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/services/index.ts -------------------------------------------------------------------------------- /app/services/location.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/services/location.service.ts -------------------------------------------------------------------------------- /app/services/page-dimensions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/services/page-dimensions.service.ts -------------------------------------------------------------------------------- /app/services/positioning.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/services/positioning.service.ts -------------------------------------------------------------------------------- /app/theme-natural.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/theme-natural.css -------------------------------------------------------------------------------- /app/theme-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/theme-night.css -------------------------------------------------------------------------------- /app/tns-java-classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/tns-java-classes.js -------------------------------------------------------------------------------- /app/weather-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/app/weather-icons.css -------------------------------------------------------------------------------- /lib/iOS/TNSWidgets.framework/Headers/TNSLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/lib/iOS/TNSWidgets.framework/Headers/TNSLabel.h -------------------------------------------------------------------------------- /lib/iOS/TNSWidgets.framework/Headers/TNSWidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/lib/iOS/TNSWidgets.framework/Headers/TNSWidgets.h -------------------------------------------------------------------------------- /lib/iOS/TNSWidgets.framework/Headers/UIImage+TNSBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/lib/iOS/TNSWidgets.framework/Headers/UIImage+TNSBlocks.h -------------------------------------------------------------------------------- /lib/iOS/TNSWidgets.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/lib/iOS/TNSWidgets.framework/Info.plist -------------------------------------------------------------------------------- /lib/iOS/TNSWidgets.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/lib/iOS/TNSWidgets.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /lib/iOS/TNSWidgets.framework/TNSWidgets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/lib/iOS/TNSWidgets.framework/TNSWidgets -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/package.json -------------------------------------------------------------------------------- /splash_logo.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/splash_logo.pxm -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/tsconfig.json -------------------------------------------------------------------------------- /weather-cards.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/weather-cards.gif -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-weather/HEAD/webpack.config.js --------------------------------------------------------------------------------