A Flutter app to view current weather status.
- ✅ Beautiful minimal UI
- ✅ Dark and Light themes
- ✅ Current temperature, maximum and minimum temperature, sunset, sunrise
- ✅ Custom icons for each weather condition
- ✅ 5-day forecast
- ✅ Beautifully animated transitions
- ✅ Line graph to show temperature variance
Flutter
API Key
Create a file called api_keys.dart in lib/src/api/
Make a class called ApiKey with your openweathermaps API key in it. Get
it here
eg:
class ApiKey {
static const OPEN_WEATHER_MAP = 'your_key';
}
