在vscode中,如何在一个launch.json中有多个flutter目标?
In vscode, how to have multiple flutter targets in one launch.json?
我最近添加了
{
"name": "Flutter Web",
"request": "launch",
"type": "dart",
"args": ["-d", "chrome","--web-port", "9000", "--web-enable-expression-evaluation"],
},
到我的 launch.json,因为我需要为我的 flutter web 调试指定一个端口。但不是,我发现很难切换回 ios 或 android。 Vscode 只想调试 launch.json 中的内容。关于如何将 android/ios 调试配置添加到 launch.json 的任何建议?
您可以添加新配置并在 运行 中切换它。
我最近添加了
{
"name": "Flutter Web",
"request": "launch",
"type": "dart",
"args": ["-d", "chrome","--web-port", "9000", "--web-enable-expression-evaluation"],
},
到我的 launch.json,因为我需要为我的 flutter web 调试指定一个端口。但不是,我发现很难切换回 ios 或 android。 Vscode 只想调试 launch.json 中的内容。关于如何将 android/ios 调试配置添加到 launch.json 的任何建议?
您可以添加新配置并在 运行 中切换它。