layout | title | permalink |
---|---|---|
page |
Developing Flutter apps in an IDE |
/using-ide-vscode/ |
- Android Studio / IntelliJ
- VS Code
The Flutter extension provides a fully integrated development experience in Visual Studio Code.
- TOC Placeholder {:toc}
Please follow the Editor Setup instructions to install the Flutter extension (which includes Flutter functionality).
Updates to the extension are shipped on a regular basis. By default, VS Code automatically updates extensions when updates are available.
To install updates manually:
- Click on the Extensions button in the Side Bar
- If the Flutter extension is shown with an available update, click the update button and then the reload button
To create a new Flutter project from the Flutter starter app template:
- Open the Command Palette (
Ctrl
+Shift
+P
(Cmd
+Shift
+P
on macOS)). - Select the Flutter: New Project command and press
Enter
. - Enter your desired Project name.
- Select a Project location.
To open an existing Flutter project:
- Click File>Open... from the main IDE window.
- Browse to the directory holding your existing Flutter source code files.
- Click Open.
The Flutter extension performs code analysis that enables:
- Syntax highlighting.
- Code completions based on rich type analysis.
- Navigating to type declarations (Go to Definition or
F12
), and finding type usages (Find All References orShift
+F12
). - Viewing all current source code problems (View>Problems or
Ctrl
+Shift
+M
(Cmd
+Shift
+M
on macOS)). Any analysis issues are shown in the Problems pane:
Start debugging by clicking Debug>Start Debugging from the main IDE window or press F5
.
When a Flutter project is open in VS Code, you should see a set of Flutter specific entries in the status bar, including a Flutter SDK version and a device name (or the message No Devices).
Note: If you do not see a Flutter version number or device info your project may not have been detected
as a Flutter project. Please ensure the folder that contains your pubspec.yaml
is inside a VS Code Workspace Folder
Note: If the status bar reads No Devices Flutter has not been able to discover any connected iOS or Android devices or simulators. You need to connect a device, or start a simulator, to proceed.
The Flutter extension automatically selects the last device connected. However, if you have multiple devices/simulators connected, click device in the status bar to see a pick-list at the top of the screen. Select the device you want to use for running or debugging.
- Click Debug>Start Without Debugging in the main IDE window, or
press
Ctrl
+F5
.
- The status bar turns orange to show you are in a debug session.
- If desired, set breakpoints in your source code.
- Click Debug>Start Debugging in the main IDE window, or press
F5
.
- The left Debug Sidebar shows stack frames and variables.
- The bottom Debug Console pane shows detailed logging output.
- Debugging is based on a default launch configuration. To customize,
click the cog at the top of the Debug Sidebar to create a
launch.json
file. You can then modify the values.
Flutter offers a best-in-class developer cycle enabling you to see the effect of your changes almost instantly with the 'hot reload' feature. See Hot reloading Flutter Apps for details.
During a debug session, several additional debugging commands are added to the Command Palette, including:
-
'Toggle Baseline Painting': Causes each RenderBox to paint a line at each of its baselines.
-
'Toggle Repaint Rainbow': Show rotating colors on layers when repainting.
-
'Toggle Slow Animations': Slow down animations to enable visual inspection.
-
'Toggle Slow-Mode Banner': Hide the 'slow mode' banner even when running a debug build.
Observatory is an additional debugging and profiling tool presented with an html-based UI. For details see the Observatory page.
To open Observatory:
- Run your app in debug mode.
- Run the Open Observatory command from the Command Palette.
Assists are code changes related to a certain code identifier. A number of these
are available when the cursor is placed on a Flutter widget identifier, as
indicated by the yellow lightbulb icon. The assist can be invoked by clicking
the lightbulb, or by using the keyboard shortcut Ctrl
+Enter
, as illustrated
here:
Quick Fixes are similar, only they are shown with a piece of code has an error and they can assist in correcting it.
This can be used when you have a widget that you want to wrap in a surrounding widget,
for example if you want to wrap a widget in a Row
or Column
.
Similar to the assist above, but for wrapping an existing list of widgets rather than an individual widget.
Changes a child argument to a children argument, and wraps the argument value in a list.
Snippets can be used to speed up entering typical code structures. They are invoked by typing their 'prefix', and then selecting from the code completion window:
The Flutter extension includes the following snippets:
- Prefix
stless
: Create a new subclass ofStatelessWidget
. - Prefix
stful
: Create a new subclass ofStatefulWidget
and it's associated State subclass. - Prefix
stanim
: Create a new subclass ofStatefulWidget
, and it's associated State subclass including a field initialized with anAnimationController
.
You can also define custom snippets by executing Configure User Snippets from the Command Palette.
Hot Reload
During a debug session, clicking the Restart button on the Debug
Toolbar, or pressing Ctrl
+Shift
+F5
(Cmd
+Shift
+F5
on macOS)
performs a hot reload.
Keyboard mappings can be changed by executing the Open Keyboard Shortcuts command from the Command Palette.
Hot Restart
Hot Reload works by injecting updated source code files into the running Dart VM (Virtual Machine). This includes not only adding new classes, but also adding methods and fields to existing classes, and changing existing functions. A few types of code changes cannot be hot reloaded though:
- Global variable initializers.
- Static field initializers.
- The
main()
method of the app.
For these changes, fully restart your application without having to end
your debugging session. To perform a hot restart, run the
Flutter: Hot Restart command from the
Command Palette, or press Ctrl
+F5
.
All known bugs are tracked in the issue tracker:
- Dart and Flutter extensions: GitHub issue tracker.
We very much welcome feedback, both on bugs/issues and feature requests. Prior to filing new issues, please:
- do a quick search in the issue trackers to see if the issue is already tracked.
- make sure you have updated to the most recent version of the plugin.
When filing new issues, please include the output of flutter doctor
.