Skip to content

Latest commit

 

History

History
54 lines (43 loc) · 1.81 KB

index.md

File metadata and controls

54 lines (43 loc) · 1.81 KB
title description
Tutorials
Tutorials for writing Dart apps.

These tutorials teach you how to use the Dart language, tools, and APIs to build applications.

Learn the basics {:#basics}

The following tours assume a basic familiarity with the Dart language, which you can get from skimming the language tour. Next, to learn about futures, try the asynchronous programming tutorial.

Once you're familiar with the language and futures, learn about iterables, streams, and packages, which are fundamental to most Dart programs.

{% card "Asynchronous programming: streams", "/libraries/async/using-streams" %} Use streams to manage sequences of data. {% endcard %} {% card "How to use packages", "/tools/pub/packages" %} Organize and share code on the pub.dev site. {% endcard %}

Build server-side apps {:#server}

{% include 'server-tutorials.md' %}

Keep learning

To get more experience developing with Dart, try more of the available tutorials!

{% card "Dart cheatsheet", "/resources/dart-cheatsheet" %} Quickly try out some of Dart's unique language features. {% endcard %} {% card "Records and patterns", "https://codelabs.developers.google.com/codelabs/dart-patterns-records" %} Discover Dart's support for records and patterns. {% endcard %} {% card "Iterable collections", "/libraries/collections/iterables" %} Learn to analyze and manipulate data stored in collections. {% endcard %} {% card "Flutter codelabs and tutorials", "https://docs.flutter.dev/codelabs" %} Expand your Dart skills by building Flutter apps. {% endcard %}