From e85534201bff9338734efe56cfb708d245be2881 Mon Sep 17 00:00:00 2001 From: Andrew nuark G Date: Fri, 28 Apr 2023 20:01:34 +0700 Subject: [PATCH] Launch options --- .vscode/launch.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..72f6b2e --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,25 @@ +{ + // 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": "tuuli_app", + "request": "launch", + "type": "dart" + }, + { + "name": "tuuli_app (profile mode)", + "request": "launch", + "type": "dart", + "flutterMode": "profile" + }, + { + "name": "tuuli_app (release mode)", + "request": "launch", + "type": "dart", + "flutterMode": "release" + } + ] +}