Implemented Ac functionality, and bug fixes

This commit is contained in:
Abdullah Alassaf
2024-05-20 02:40:50 +03:00
parent 0f75c3def1
commit 4257d69768
27 changed files with 733 additions and 451 deletions

105
.vscode/launch.json vendored
View File

@ -1,60 +1,61 @@
{
// 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": "Iphone 15 Pro Max",
// "request": "launch",
// "type": "dart",
// "deviceId": "0147FC23-3D6C-406A-BE2C-9E67BAF3DA9B"
// },
// {
// "name": "Faris Iphone ",
// "request": "launch",
// "type": "dart",
// "deviceId": "00008101-00050C1C02FA001E"
// },
// {
// "name": "Iphone 15 Pro",
// "request": "launch",
// "type": "dart",
// "deviceId": "B26AF31B-D38E-4485-9628-528E0DB29789"
// },
// {
// "name": "Iphone SE",
// "request": "launch",
// "type": "dart",
// "deviceId": "A0274205-52D6-48CC-8344-AB4AE3082DE4",
// },
{
"name": "syncrow-app",
"request": "launch",
"type": "dart"
},
{
"name": "syncrow-app (profile mode)",
"name": "DEVELOPMENT",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "syncrow-app (release mode)",
"args": [
"--dart-define",
"FLAVOR=development"
],
"flutterMode": "debug"
},{
"name": "STAGING",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
],
// "compounds": [
// {
// "name": "All Device",
// "configurations": [
// "Iphone 15 Pro Max",
// "Iphone SE"
// ]
// }
// ]
"args": [
"--dart-define",
"FLAVOR=staging"
],
"flutterMode": "debug"
},{
"name": "PRODUCTION",
"request": "launch",
"type": "dart",
"args": [
"--dart-define",
"FLAVOR=production"
],
"flutterMode": "debug"
},
]
}