Skip to content

Instantly share code, notes, and snippets.

@kappa-lab
Created October 21, 2018 03:17
Show Gist options
  • Save kappa-lab/e61f51581f3e2f19f7a82df6fa2c7cc0 to your computer and use it in GitHub Desktop.
Save kappa-lab/e61f51581f3e2f19f7a82df6fa2c7cc0 to your computer and use it in GitHub Desktop.
[VSCode] Start Debugging from any entrypoints.
{
// 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": "Flutter",
"request": "launch",
"type": "dart",
//現在開いているファイルから実行する run by current open file
//"program": "${file}",
//lib/main.dartkから実行する(defaultと同じ) run by lib/main.dartk. as default setting.
"program": "${workspaceFolder}/lib/main.dart",
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment