A Weather App used MVVM with Colusre binging
Strucure:
I used MVVM with Colusre binging
modular architecture :
Also I used openweathermap to get all information for current weather as it’s easy to use and json is easy to parse:
used First Api to get current weather by city,state,country Code ==> api.openweathermap.org/data/2.5/weather?q={city name},{state code},{country code}&appid={API key}
used second api get current weather by lat and lon ==> api.openweathermap.org/data/2.5/weather?lat={lat}&lon={lon}&appid={API key}
Note: the apis didn’t return Chance of precipitation so i didn’t show it
For Story number 6:
1- I added button to get weather of current location.
2- I added small animation when reload data from api