Skip to content

Commit

Permalink
Add VSCode launch.json for example (#1360)
Browse files Browse the repository at this point in the history
* add launch.json

* add launch.json
  • Loading branch information
knottx authored Jul 17, 2024
1 parent 749a4d2 commit e81c489
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions example/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"request": "launch",
"type": "dart",
"program": "lib/main.dart",
"flutterMode": "debug",
"args": []
},
{
"name": "Release",
"request": "launch",
"type": "dart",
"program": "lib/main.dart",
"flutterMode": "release",
"args": []
},
]
}

0 comments on commit e81c489

Please sign in to comment.