feat: ajout de serveurs depuis l'app + charte flamme sombre
Build APK / build (push) Successful in 2m49s

- backend: GET /api/containers (liste lisible), POST/DELETE /api/servers
  (serveurs custom persistés en /data/servers.json, mergés aux intégrés),
  champ custom dans le statut.
- app: écran AddServer (form + sélecteur multi-conteneurs filtrable), FAB
  Ajouter, suppression depuis le détail (serveurs custom only).
- thème: palette flamme/chaud sombre (anthracite + orange→rouge), remplace le
  Material violet/teal par défaut (scaffold, appbar, tabs, boutons, FAB, champs).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
neckfire
2026-07-13 13:33:22 +02:00
co-authored by Claude Opus 4.8
parent fb4ab95f13
commit 30786f9706
7 changed files with 441 additions and 14 deletions
+2 -2
View File
@@ -18,9 +18,9 @@ class GameManagerApp extends StatelessWidget {
return MaterialApp(
title: 'GameManager',
debugShowCheckedModeBanner: false,
theme: AppTheme.light(),
theme: AppTheme.dark(),
darkTheme: AppTheme.dark(),
themeMode: ThemeMode.system,
themeMode: ThemeMode.dark,
home: AuthGate(auth: auth, api: api),
);
}