- create auth, main shell, home, profile, notifications and settings modules.

- added navigation, utils, design system and shared packages
- implemented go router in entiered app
- implemented flutter riverpod instead provider
This commit is contained in:
AlcalaJulian
2025-11-13 15:16:00 +01:00
parent 75beafd771
commit 5ca37d2822
332 changed files with 7759 additions and 3452 deletions

18
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
// 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": "sf_app_platform",
"cwd": "apps/mobile_app",
"request": "launch",
"type": "dart",
// "toolArgs": [
// "--dart-define=ELEVENLABS_API_KEY=sk_2351c16102e66b5b5c26d022d73e8af203fda111f60516f6",
// "--dart-define=ELEVENLABS_VOICE_ID=kaOF79CUr1VcYoAoVbqa"
// ]
}
]
}

11
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,11 @@
{
"dart.flutterSdkPath": "/Users/juliandalcalaf/Development/flutter",
"dart.sdkPath": "/Users/juliandalcalaf/Development/flutter/bin/cache/dart-sdk",
"dart.enableSdkFormatter": true,
"dart.analysisExcludedFolders": [
"**/build",
"**/.dart_tool"
],
"editor.formatOnSave": true,
"editor.tabSize": 2
}