dicee-flutter/README.md
Anurag Bhandari 7111f1202c Fix typos in README.md
* s/onClick/onPressed
* s/expanded/Expanded
2019-08-31 14:33:27 +05:30

32 lines
1.5 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

![App Brewery Banner](https://github.com/londonappbrewery/Images/blob/master/AppBreweryBanner.png)
# Dicee 🎲
## Our Goal
The objective of this tutorial is to introduce you to the core programming concepts that will form the foundation of most of the apps youll build in the future. This app will teach you how to make apps with functionality using setState() inside Stateful Flutter widgets.
## What you will create
Were going to make a Las Vegas dice app. You can make the die roll at the press of a button. With this app in your pocket, youll be able to settle any score on the go!
![Finished App](https://github.com/londonappbrewery/Images/blob/master/dicee-demo.gif)
## What you will learn
- How to use Flutter stateless widgets to design the user interface.
- How to use Flutter stateful widgets to update the user interface.
- How to change the properties of various widgets.
- How to use onPressed listeners to detect when buttons are pressed.
- How to use setState to mark the widget tree as dirty and requiring update on the next render.
- How to use Expanded to make widgets adapt to screen dimensions.
- Understand and use string interpolation.
- Learn about basic dart programming concepts such as data types and functions.
- Code and use gesture controls.
>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/)
![End Banner](https://github.com/londonappbrewery/Images/blob/master/readme-end-banner.png)