You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkgs/dart_mcp_server/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -147,7 +147,8 @@ For more information, see the official VS Code documentation for
147
147
|`get_runtime_errors`| Get runtime errors | Retrieves the most recent runtime errors that have occurred in the active Dart or Flutter application. Requires "connect_dart_tooling_daemon" to be successfully called first. |
148
148
|`get_selected_widget`| Get selected widget | Retrieves the selected widget from the active Flutter application. Requires "connect_dart_tooling_daemon" to be successfully called first. |
149
149
|`get_widget_tree`| Get widget tree | Retrieves the widget tree from the active Flutter application. Requires "connect_dart_tooling_daemon" to be successfully called first. |
150
-
|`hot_reload`| Hot reload | Performs a hot reload of the active Flutter application. This is to apply the latest code changes to the running application. Requires "connect_dart_tooling_daemon" to be successfully called first. |
150
+
|`hot_reload`| Hot reload | Performs a hot reload of the active Flutter application. This will apply the latest code changes to the running application, while maintaining application state. Reload will not update const definitions of global values. Requires "connect_dart_tooling_daemon" to be successfully called first. |
151
+
|`hot_restart`| Hot restart | Performs a hot restart of the active Flutter application. This applies the latest code changes to the running application, including changes to global const values, while resetting application state. Requires "connect_dart_tooling_daemon" to be successfully called first. Doesn't work for Non-Flutter Dart CLI programs. |
151
152
|`hover`| Hover information | Get hover information at a given cursor position in a file. This can include documentation, type information, etc for the text at that position. |
152
153
|`launch_app`|| Launches a Flutter application and returns its DTD URI. |
153
154
|`list_devices`|| Lists available Flutter devices. |
0 commit comments