Basic.project.showcase.mov
You have to have valid keys.dart
file in lib/secrets
directory.
Get all dependencies by running command:
flutter pub get
To run all tests you can do so by following command:
flutter test
The assignment is to create a (simple) weather app using the following free API: https://www.weatherapi.com
The app needs to show current heat, wind and cloud cover
The app needs to show the same for tomorrow
Extra points for a graphical representation of the data
Extra point for a graph of predicted temperatures for the next 12 hours
Extra points for showing a notification on device at 8 in the morning if it is going to rain during the day (>=70% chance)
Needs to be implemented using bloc architecture from the flutter_bloc package
Extra points for adding tests