diff --git a/.gitignore b/.gitignore index 6ce245c..9897bb4 100644 --- a/.gitignore +++ b/.gitignore @@ -25,7 +25,8 @@ lib/**/*.g.dart *.iml *.ipr *.iws -.vscode/ +.vscode/* +!.vscode/launch.json *.swp *.swo *~ diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..a822a05 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,40 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Flutter Web (Chrome)", + "type": "dart", + "request": "launch", + "program": "lib/main.dart", + "args": [ + "-d", + "chrome", + "--web-port=8080" + ] + }, + { + "name": "Flutter Web (Chrome) - Profile", + "type": "dart", + "request": "launch", + "program": "lib/main.dart", + "flutterMode": "profile", + "args": [ + "-d", + "chrome", + "--web-port=8080" + ] + }, + { + "name": "Flutter Web (Chrome) - Release", + "type": "dart", + "request": "launch", + "program": "lib/main.dart", + "flutterMode": "release", + "args": [ + "-d", + "chrome", + "--web-port=8080" + ] + } + ] +}