From 77443202aa8bcb41b746cc4c857d98beab5a66c7 Mon Sep 17 00:00:00 2001 From: Thibault Deckers Date: Tue, 18 Mar 2025 21:56:17 +0100 Subject: [PATCH] vs code launch config --- .vscode/launch.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..30299a232 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,29 @@ +{ + // 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": "aves (main play)", + "request": "launch", + "type": "dart", + "program": "lib/main_play.dart", + "args": [ + "--flavor", + "play" + ] + }, + { + "name": "aves (main play) [profile]", + "request": "launch", + "type": "dart", + "program": "lib/main_play.dart", + "args": [ + "--flavor", + "play" + ], + "flutterMode": "profile" + } + ] +} \ No newline at end of file