feat: Update project configuration and add Podfile for iOS and macOS support

This commit is contained in:
2025-08-26 21:47:34 +02:00
parent 8356743906
commit 7f42a1ff20
11 changed files with 272 additions and 7 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": "supplements",
"request": "launch",
"type": "dart"
},
{
"name": "supplements (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "supplements (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}