This commit is contained in:
Mohammed Al-Samarraie
2026-01-16 14:42:43 +03:00
parent 56e2c0ffaa
commit 2fd5aff0c2
4 changed files with 363 additions and 56 deletions

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

@@ -0,0 +1,26 @@
{
// 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": "finger_print_app",
"request": "launch",
"type": "dart"
},
{
"name": "finger_print_app (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "finger_print_app (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}