├── .buckconfig ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── index.ios.js ├── ios ├── weather-Bridging-Header.h ├── weather.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── weather.xcscheme ├── weather │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── weatherTests │ ├── Info.plist │ └── weatherTests.m ├── package.json ├── resources ├── fonts │ ├── Abel-Regular.ttf │ ├── big_john.otf │ ├── slim_joe.otf │ └── weathericons-regular-webfont.ttf ├── gpx │ └── Dubai, United Arab Emirates.gpx ├── screenshots │ ├── default.jpg │ ├── tonic.jpg │ └── warm.jpg └── sketches │ ├── iPhone6Plus-weather-app-green.png │ ├── iPhone6Plus-weather-app-sky.png │ ├── iPhone6Plus-weather-app-turquoise.png │ ├── iPhone6Plus-weather-app-wireframe.png │ ├── weather-final.png │ ├── weather-fit-on-iphone6plusgold.sketch │ ├── weather-fit-on-iphone6plusvector.sketch │ └── weather.sketch └── src └── components ├── api.js ├── colorThemes.js ├── icons.js └── temperatureChart.js /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/README.md -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/weather-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/ios/weather-Bridging-Header.h -------------------------------------------------------------------------------- /ios/weather.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/ios/weather.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/weather.xcodeproj/xcshareddata/xcschemes/weather.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/ios/weather.xcodeproj/xcshareddata/xcschemes/weather.xcscheme -------------------------------------------------------------------------------- /ios/weather/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/ios/weather/AppDelegate.h -------------------------------------------------------------------------------- /ios/weather/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/ios/weather/AppDelegate.m -------------------------------------------------------------------------------- /ios/weather/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/ios/weather/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/weather/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/ios/weather/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/weather/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/ios/weather/Info.plist -------------------------------------------------------------------------------- /ios/weather/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/ios/weather/main.m -------------------------------------------------------------------------------- /ios/weatherTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/ios/weatherTests/Info.plist -------------------------------------------------------------------------------- /ios/weatherTests/weatherTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/ios/weatherTests/weatherTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/package.json -------------------------------------------------------------------------------- /resources/fonts/Abel-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/fonts/Abel-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/big_john.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/fonts/big_john.otf -------------------------------------------------------------------------------- /resources/fonts/slim_joe.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/fonts/slim_joe.otf -------------------------------------------------------------------------------- /resources/fonts/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/fonts/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /resources/gpx/Dubai, United Arab Emirates.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/gpx/Dubai, United Arab Emirates.gpx -------------------------------------------------------------------------------- /resources/screenshots/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/screenshots/default.jpg -------------------------------------------------------------------------------- /resources/screenshots/tonic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/screenshots/tonic.jpg -------------------------------------------------------------------------------- /resources/screenshots/warm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/screenshots/warm.jpg -------------------------------------------------------------------------------- /resources/sketches/iPhone6Plus-weather-app-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/sketches/iPhone6Plus-weather-app-green.png -------------------------------------------------------------------------------- /resources/sketches/iPhone6Plus-weather-app-sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/sketches/iPhone6Plus-weather-app-sky.png -------------------------------------------------------------------------------- /resources/sketches/iPhone6Plus-weather-app-turquoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/sketches/iPhone6Plus-weather-app-turquoise.png -------------------------------------------------------------------------------- /resources/sketches/iPhone6Plus-weather-app-wireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/sketches/iPhone6Plus-weather-app-wireframe.png -------------------------------------------------------------------------------- /resources/sketches/weather-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/sketches/weather-final.png -------------------------------------------------------------------------------- /resources/sketches/weather-fit-on-iphone6plusgold.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/sketches/weather-fit-on-iphone6plusgold.sketch -------------------------------------------------------------------------------- /resources/sketches/weather-fit-on-iphone6plusvector.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/sketches/weather-fit-on-iphone6plusvector.sketch -------------------------------------------------------------------------------- /resources/sketches/weather.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/resources/sketches/weather.sketch -------------------------------------------------------------------------------- /src/components/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/src/components/api.js -------------------------------------------------------------------------------- /src/components/colorThemes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/src/components/colorThemes.js -------------------------------------------------------------------------------- /src/components/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/src/components/icons.js -------------------------------------------------------------------------------- /src/components/temperatureChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakhttp/weather-app/HEAD/src/components/temperatureChart.js --------------------------------------------------------------------------------