https://github.com/dauntlessdev/flutter-dice-roller
Basic flutter app for rolling two virtual dice.
https://github.com/dauntlessdev/flutter-dice-roller
android dart flutter ios
Last synced: about 2 months ago
JSON representation
Basic flutter app for rolling two virtual dice.
- Host: GitHub
- URL: https://github.com/dauntlessdev/flutter-dice-roller
- Owner: DauntlessDev
- Created: 2020-06-03T09:03:22.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-03T11:27:33.000Z (about 6 years ago)
- Last Synced: 2025-02-08T05:42:26.235Z (over 1 year ago)
- Topics: android, dart, flutter, ios
- Language: Dart
- Size: 494 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dicee 🎲
## What is this app?
You can make the die roll at the press of a button. With this app in your pocket, you’ll be able to settle any score on the go!

## Learnings
- 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.