IntelliJ & Android Studio
The Dart plugin adds Dart support to JetBrains IDEs such asIntelliJ IDEA and Android Studio.IntelliJ IDEA is an intelligent Java IDEwith support for many other languages and frameworks.Android Studio is an IDE based on IntelliJ IDEAthat’s used for Android and Flutter development.
Whichever JetBrains IDE you choose for Dart development,this page has resources to help you get started quicklyand find more information when you need it.
Note:WebStorm, a JetBrains IDE for client-side development, comes with the Dart plugin pre-installed.
Getting started
If you don’t already have the IDE and the Dart SDK, get them.Then install the Dart plugin and tell it where to find the Dart SDK.
Downloading the IDE
Install a JetBrains IDE if you don’t already have one.
- Download IntelliJ IDEA or,to try out the latest Dart language features,install IntelliJ IDEA EAP.
- Or find another JetBrains product.
Note: The Community Edition of IntelliJ IDEA has limited functionality. For example, it doesn’t directly support debugging web apps. It also has very little support for JavaScript, HTML, CSS, and YAML.
Downloading the Dart SDK
If you don’t already have the Dart SDK,install it.
Configuring Dart support
Here’s one way to configure Dart support:
Start the IDE, and install the Dart plugin. To find the Dart plugin, from the Welcome screen choose Configure > Plugins, then click Install JetBrains plugin, and then search or scroll down until you find Dart. Once you've installed the Dart plugin, restart the IDE.
Create a new Dart project:
- From the Welcome screen, click Create New Project.
- In the next dialog, click Dart.
If you don't see a value for the Dart SDK path, enter it.
For example, the SDK path might be
<dart installation directory>/dart/dart-sdk
.
Note: The Dart SDK path specifies the directory that contains the SDK’s bin
and lib
directories; the bin
directory contains tools such as dart
and dartfmt
. The IDE ensures that the path is valid.
An alternative to Step 2 is to open an existing Dart project,and then open its pubspec.yaml
file or any of its Dart files.
Reporting issues
Please report issues and feedback via the officialJetBrains issue tracker for Dart.Include details of the expected behavior, the actual behavior,and screenshots if appropriate.
More information
See the JetBrains website for more information.