main skeleton of app

This commit is contained in:
Andrew 2022-09-08 18:17:52 +07:00
commit 24f458b06f
36 changed files with 1783 additions and 0 deletions

25
.vscode/launch.json vendored Normal file
View file

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

3
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,3 @@
{
"cmake.configureOnOpen": false
}