Skip to content

Commit cd07fab

Browse files
committed
Update readme
1 parent ffab216 commit cd07fab

File tree

1 file changed

+28
-10
lines changed

1 file changed

+28
-10
lines changed

README.md

Lines changed: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,34 @@
1-
# clima
1+
![App Brewery Banner](https://github.com/londonappbrewery/Images/blob/master/AppBreweryBanner.png)
22

3-
A new Flutter application.
43

5-
## Getting Started
4+
# Clima ☁
65

7-
This project is a starting point for a Flutter application.
6+
## Our Goal
87

9-
A few resources to get you started if this is your first Flutter project:
8+
The objective of this tutorial 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.
109

11-
- [Lab: Write your first Flutter app](https://flutter.io/docs/get-started/codelab)
12-
- [Cookbook: Useful Flutter samples](https://flutter.io/docs/cookbook)
1310

14-
For help getting started with Flutter, view our
15-
[online documentation](https://flutter.io/docs), which offers tutorials,
16-
samples, guidance on mobile development, and a full API reference.
11+
## What you will create
12+
13+
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!
14+
15+
![Finished App](https://github.com/londonappbrewery/Images/blob/master/clima-demo.gif)
16+
17+
## What you will learn
18+
19+
- How to use Dart to perform asynchronous tasks.
20+
- Understand async and await.
21+
- Learn about Futures and how to work with them.
22+
- How to network with the Dart http package.
23+
- What APIs are and how to use them to get data from the internet.
24+
- What JSONs are and how to parse them using the Dart convert package.
25+
- How to pass data forwards and backwards between screens using the Navigator.
26+
- How to handle exceptions in Dart using try/catch/throw.
27+
- Learn about the lifecycle of Stateful Widgets and how to override them.
28+
- How to use the Geolocator package to get live location data for both iOS and Android.
29+
- How to use the TextField Widget to take user input.
30+
31+
32+
>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/)
33+
34+
![End Banner](https://github.com/londonappbrewery/Images/blob/master/readme-end-banner.png)

0 commit comments

Comments
 (0)