Auto-sync: 20260315_220001
This commit is contained in:
parent
e5872b29de
commit
fab8164353
1 changed files with 4 additions and 1 deletions
|
|
@ -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(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue