Add launche.json

This commit is contained in:
Stonegate 2021-02-04 23:08:13 +08:00
parent 818069a18f
commit 133cbcd65f
2 changed files with 17 additions and 1 deletions

1
.gitignore vendored
View File

@ -31,7 +31,6 @@
/lib/.env.dart
/build/
pubspec.lock
.vscode
analysis_options.yaml
# Web related

17
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,17 @@
{
// 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",
"args": [
"--flavor",
"play"
]
}
]
}