Cambios visuales completos

This commit is contained in:
2026-05-10 17:28:35 +02:00
parent 8b4ca132aa
commit 42f01949c4
33 changed files with 887 additions and 397 deletions

View File

@@ -60,6 +60,7 @@ class _PantallaVotacionState extends State<PantallaVotacion> {
automaticallyImplyLeading: false,
),
body: FondoFarolero(
intenso: true,
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
@@ -68,9 +69,9 @@ class _PantallaVotacionState extends State<PantallaVotacion> {
Container(
width: double.infinity,
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: TemaApp.colorTarjeta,
borderRadius: BorderRadius.circular(12),
decoration: TemaApp.decoracionPanel(
color: TemaApp.colorTarjeta.withValues(alpha: 0.90),
borderColor: TemaApp.colorNaranja.withValues(alpha: 0.38),
),
child: Column(
children: [
@@ -105,9 +106,17 @@ class _PantallaVotacionState extends State<PantallaVotacion> {
),
const SizedBox(height: 16),
Text(
l10n.whoIsImpostor,
style: Theme.of(context).textTheme.titleMedium,
EncabezadoFarolero(
icono: Icons.how_to_vote,
titulo: l10n.whoIsImpostor,
subtitulo: l10n.selectOnePlayer,
color: TemaApp.colorAcento,
trailing: Image.asset(
'assets/ui/premium/vote_danger_glow.png',
width: 42,
height: 42,
opacity: const AlwaysStoppedAnimation(0.64),
),
),
const SizedBox(height: 12),
@@ -178,6 +187,7 @@ class _PantallaVotacionState extends State<PantallaVotacion> {
automaticallyImplyLeading: false,
),
body: FondoFarolero(
intenso: true,
child: Center(
child: Padding(
padding: const EdgeInsets.all(32),