flutter weather app
a flutter application to view current weather status. this is my first project on my journey to learning and understanding flutter and dart.
features
- :white_check_mark: beautiful minimal ui
- :white_check_mark: dark and light themes
- :white_check_mark: current temperature, max and min temperature, sunset, sunrise
- :white_check_mark: custom icons for each weather condition
- :white_check_mark: 5 day forecast
- :white_check_mark: beautifully animated transitions
- :white_check_mark: bloc pattern for api calls
getting started
installing
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';
}
todo
- i18n support for multiple languages
Comments are closed.