From b0ce8593c79e2cd5e3dd629f45fba8d87c38527e Mon Sep 17 00:00:00 2001 From: Hari76 <51258980+Hari76@users.noreply.github.com> Date: Sat, 1 Jun 2019 15:31:29 +0530 Subject: [PATCH] Create weather app Weather app shows Time, Weather, month etc. --- Weather App | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Weather App diff --git a/Weather App b/Weather App new file mode 100644 index 0000000..ed25493 --- /dev/null +++ b/Weather App @@ -0,0 +1,26 @@ +var injectedForecast = { + key: 'newyork', + label: 'New York, NY', + currently: { + time: 1453489481, + summary: 'Clear', + icon: 'partly-cloudy-day', + temperature: 52.74, + apparentTemperature: 74.34, + precipProbability: 0.20, + humidity: 0.77, + windBearing: 125, + windSpeed: 1.52 + }, + daily: { + data: [ + {icon: 'clear-day', temperatureMax: 55, temperatureMin: 34}, + {icon: 'rain', temperatureMax: 55, temperatureMin: 34}, + {icon: 'snow', temperatureMax: 55, temperatureMin: 34}, + {icon: 'sleet', temperatureMax: 55, temperatureMin: 34}, + {icon: 'fog', temperatureMax: 55, temperatureMin: 34}, + {icon: 'wind', temperatureMax: 55, temperatureMin: 34}, + {icon: 'partly-cloudy-day', temperatureMax: 55, temperatureMin: 34} + ] + } + };