mirror of
https://github.com/hanskokx/arcane_framework.git
synced 2026-05-14 02:19:08 +02:00
f5056c36df
- Introduced .vscode/settings.json and .vscode/launch.json for IDE configuration. - Updated DebugAuthInterface and ArcaneAuthenticationService to return const Result.ok() for consistency. - Added ArcaneTheme class for theme management. - Updated pubspec.yaml to change result_monad dependency version. - Modified authentication_service_test to return const Result.ok() in mock setups. Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
25 lines
597 B
JSON
25 lines
597 B
JSON
{
|
|
// 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": "example",
|
|
"request": "launch",
|
|
"type": "dart"
|
|
},
|
|
{
|
|
"name": "example (profile mode)",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"flutterMode": "profile"
|
|
},
|
|
{
|
|
"name": "example (release mode)",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"flutterMode": "release"
|
|
}
|
|
]
|
|
} |