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
@@ -31,17 +32,29 @@ alias flutter_tools='/YOUR_PATH/flutter/bin/dart --observe /YOUR_PATH/flutter/pa
31
32
path: /YOUR_PATH/dwds
32
33
```
33
34
35
+
Note: This is even easier if you create a `pubspec_overrides.yaml` file in the `flutter_tools` directory, and then git-ignore it. This way you don't have to worry about committing your DWDS override.
or [new](https://github.com/flutter/gallery) Flutter Gallery apps).
37
40
1. From the Flutter app repo, run your local Flutter Tools with alias you
38
41
defined in step #2:
39
42
43
+
If you want a DevTools URL:
44
+
45
+
```
46
+
flutter_tools_debug run -d chrome
47
+
```
48
+
49
+
If you don't want a DevTools URL:
50
+
40
51
```
41
52
flutter_tools run -d chrome
42
53
```
43
54
44
-
6. Open up the **first** Dart DevTools URL you see printed:
55
+
Note: `flutter_tools_debug` can be a bit of a pain, because the app starts paused and you have to first open the DevTools URL and resume before you can do anything. Therefore, when you don't need to set breakpoints you should run `flutter_tools` instead of `flutter_tools_debug`.
56
+
57
+
6. If running with `flutter_tools_debug`, open up the **first** Dart DevTools URL you see printed:
0 commit comments