feat(front): add app icon for android, web and windows + agenda stub

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-09-24 11:53:43 +02:00
co-authored by Cursor
parent 147051821a
commit a0a5e15b04
22 changed files with 448 additions and 10 deletions
+7
View File
@@ -383,6 +383,13 @@ class AuthService {
}
/// Récupère l'utilisateur connecté depuis le cache
static const String tokenKey = 'auth_token';
static Future<String?> getToken() async {
final prefs = await SharedPreferences.getInstance();
return prefs.getString(tokenKey);
}
static Future<AppUser?> getCurrentUser() async {
final prefs = await SharedPreferences.getInstance();
final userJson = prefs.getString(_currentUserKey);