Auto-sync: 20260315_220001

This commit is contained in:
Paolo 2026-03-15 22:00:01 +01:00
parent e5872b29de
commit fab8164353

View file

@ -332,13 +332,16 @@ class _LobbyScreenState extends State<LobbyScreen> with WidgetsBindingObserver {
// --- MODIFICA COLORE SFONDO HOST PANEL --- // --- MODIFICA COLORE SFONDO HOST PANEL ---
Color panelBackgroundColor = Colors.transparent; Color panelBackgroundColor = Colors.transparent;
if (themeType == AppThemeType.cyberpunk) { if (themeType == AppThemeType.cyberpunk) {
panelBackgroundColor = Colors.black.withOpacity(0.85); panelBackgroundColor = Colors.black.withOpacity(0.1);
} else if (themeType == AppThemeType.doodle) { } else if (themeType == AppThemeType.doodle) {
panelBackgroundColor = Colors.white.withOpacity(0.5); panelBackgroundColor = Colors.white.withOpacity(0.5);
} else if (themeType == AppThemeType.grimorio) { } else if (themeType == AppThemeType.grimorio) {
panelBackgroundColor = Colors.white.withOpacity(0.2); // Sfumatura bianca leggera per Grimorio panelBackgroundColor = Colors.white.withOpacity(0.2); // Sfumatura bianca leggera per Grimorio
} else if (themeType == AppThemeType.arcade) {
panelBackgroundColor = Colors.black.withOpacity(0.4); // <-- AGGIUNGI QUESTO PER L'ARCADE
} }
Widget hostPanel = Transform.rotate( Widget hostPanel = Transform.rotate(
angle: themeType == AppThemeType.doodle ? 0.01 : 0, angle: themeType == AppThemeType.doodle ? 0.01 : 0,
child: Container( child: Container(