-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Address some devtools extensions feedback related to Windows (#6639)
- Loading branch information
1 parent
28dd7b5
commit 51ed758
Showing
6 changed files
with
75 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
packages/devtools_extensions/example/foo/.vscode/launch.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "foo_devtools_extension + simulated environment", | ||
"cwd": "packages/foo_devtools_extension", | ||
"request": "launch", | ||
"type": "dart", | ||
"args": [ | ||
"--dart-define=use_simulated_environment=true" | ||
], | ||
}, | ||
{ | ||
"name": "foo_devtools_extension + simulated environment (profile mode)", | ||
"cwd": "packages/foo_devtools_extension", | ||
"request": "launch", | ||
"type": "dart", | ||
"flutterMode": "profile", | ||
"args": [ | ||
"--dart-define=use_simulated_environment=true" | ||
], | ||
}, | ||
{ | ||
"name": "foo_devtools_extension + simulated environment (release mode)", | ||
"cwd": "packages/foo_devtools_extension", | ||
"request": "launch", | ||
"type": "dart", | ||
"flutterMode": "release", | ||
"args": [ | ||
"--dart-define=use_simulated_environment=true" | ||
], | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters