Ad space (banner)
🎯Dart Lessons
- 01Setting up (what you'll need)
- 02Your first output (print)
- 03Variables and types (var and annotations)
- 04Null safety (? and !)
- 05Branching (the if statement)
- 06Repeating (the for loop)
- 07Writing your own function
- 08Repeating (the while loop)
- 09Working with lists (List)
- 10Working with maps (Map)
- 11Classes (object orientation)
- 12Constructors
- 13Inheritance
- 14Named arguments
- 15Asynchronous work (Future, async, await)
- 16Working with strings
- 17The switch statement
- 18The ternary operator
- 19Extension methods
- 20[Project] Build a small inventory system
Lesson 1 / 20
Setting up (what you'll need)
To run Dart you will need the following. Dart is a language developed largely by Google, and it is popular because pairing it with the Flutter framework lets you build both iOS and Android apps from a single codebase.
- The Dart SDK: install it from the official site.
- If you are building mobile apps, the quickest route is to install the Flutter SDK, which bundles Dart.
- For an editor, the standard choice is VS Code with the Dart and Flutter extensions.
← Previous lesson
Next lesson →
Ad space (banner)
Ad space (in-article)
