Documentation moved

We introduced Quickstarts as a new place for examples of how to use your favourite language and framework on Gitpod. Remember though, even if you can't find your use case as a quickstart, Gitpod very likely still supports your programming language as it's simply a Ubuntu-based operating system in the cloud. Visit the quickstarts

Dart in Gitpod

Example Repositories

Here are a few Dart example projects that are already automated with Gitpod:

Repository Description Try it
Flutter Hello World Demo The Flutter hello world demo template configured for Gitpod Open in Gitpod

Installing Dart

To install the Dart SDK in Gitpod one must add the following to your .gitpod.Dockerfile

RUN brew tap dart-lang/dart && brew install dart

VSCode Extensions

Dart

This Extension adds cool syntax highlighting

Syntax highlighting example

It adds Intellisense support for autocompletion

Dart intellisense example

Try it

Here is a hello world example of a Gitpodified project running in the browser, try it!

Open in Gitpod

Was this helpful?