Files
PotatoMessenger/client/.vscode/launch.json
fegor101 210b59f8ed add main menu interface
- MainMenu
 - ChatItem (Widget)
 - ChatFolder (Widget)
 - ChatFolders (Widget)
 - ColorTheme
2026-04-10 12:43:08 +03:00

25 lines
696 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": "client",
"request": "launch",
"type": "dart"
},
{
"name": "client (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "client (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}