https://github.com/d-coder135/weather-app-flutter
An application to fetch and show the weather of any particular city or as per you current location. The application is build using Flutter & Dart Language.
https://github.com/d-coder135/weather-app-flutter
Last synced: 11 months ago
JSON representation
An application to fetch and show the weather of any particular city or as per you current location. The application is build using Flutter & Dart Language.
- Host: GitHub
- URL: https://github.com/d-coder135/weather-app-flutter
- Owner: D-Coder135
- Created: 2021-05-14T05:29:11.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-18T08:33:58.000Z (about 5 years ago)
- Last Synced: 2025-04-14T19:47:52.434Z (about 1 year ago)
- Language: Dart
- Size: 8.78 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Clima ☁ A Weather Application
## My Goal
The objective of this tutorial is to learn about asynchronous programming in Dart. I'll look at how to carry out time consuming tasks such as getting device location and networking to get data from the internet.
## What I will create
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, you'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 you can think of!

## What I have learned
- How to use Dart to perform asynchronous tasks.
- Understand async and await.
- Learn 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.
- Learn 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.