https://github.com/haardikdharma10/clima
A weather app to find out the live weather data of current location of the device or of any city you can think of!
https://github.com/haardikdharma10/clima
Last synced: about 1 month ago
JSON representation
A weather app to find out the live weather data of current location of the device or of any city you can think of!
- Host: GitHub
- URL: https://github.com/haardikdharma10/clima
- Owner: haardikdharma10
- Created: 2020-07-29T14:52:17.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-06T14:47:08.000Z (almost 5 years ago)
- Last Synced: 2025-02-16T19:37:09.567Z (4 months ago)
- Language: Dart
- Homepage:
- Size: 1.51 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Clima
## Goal
The objective of this project is to learn about asynchronous programming in Dart. We'll look at how to carry out time consuming tasks such as getting device location and networking to get data from the internet.
## Abstract
We’re going to make a weather app inspired by the beautiful designs made by [Olia Gozha](https://dribbble.com/shots/4663154-). By the end of the module, we'll be able to find out the live weather data in the current location of the device as well as the weather for any city we can think of!

## What I learned from this project:
- How to use Dart to perform asynchronous tasks.
- Understood async and await.
- Learned about Futures and how to work with them.
- How to network with the Dart http package.
- What APIs are and how to use them to get data from the internet.
- What JSONs are and how to parse them using the Dart convert package.
- How to pass data forwards and backwards between screens using the Navigator.
- How to handle exceptions in Dart using try/catch/throw.
- Learned about the lifecycle of Stateful Widgets and how to override them.
- How to use the Geolocator package to get live location data for both iOS and Android.
- How to use the TextField Widget to take user input.>This is a companion project to The App Brewery's Complete Flutter Development Bootcamp, check out the full course at [www.appbrewery.co](https://www.appbrewery.co/)