Initial commit

This commit is contained in:
Patrick Alvin Alcala 2025-11-12 12:46:45 +08:00
commit e5c20d673f
73 changed files with 2128 additions and 0 deletions

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

@ -0,0 +1,43 @@
{
// 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": "run app",
// "request": "launch",
// "type": "dart"
// },
{
"name": "run app",
"request": "launch",
"type": "node-terminal",
"command": "fvm flutter run",
},
{
"name": "run without impeller",
"request": "launch",
"type": "node-terminal",
"command": "fvm flutter run --no-enable-impeller",
},
{
"name": "build apk",
"request": "launch",
"type": "node-terminal",
"command": "fvm flutter build apk --target-platform android-arm64",
},
{
"name": "pharmacy_mobile (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "pharmacy_mobile (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}

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

@ -0,0 +1,3 @@
{
"dart.flutterSdkPath": ".fvm/versions/3.35.4"
}