Iconografía básica

This commit is contained in:
2026-05-12 01:20:19 +02:00
parent 5697c2a5a1
commit 158a7ae6a8
36 changed files with 221 additions and 103 deletions
+6 -6
View File
@@ -353,12 +353,12 @@ class _PantallaCrearPartidaState extends State<PantallaCrearPartida> {
ButtonSegment(
value: false,
label: Text(l10n.singleDevice),
icon: const Icon(Icons.phone_android),
icon: IconoFarolero(Icons.phone_android),
),
ButtonSegment(
value: true,
label: Text(l10n.multiDevice),
icon: const Icon(Icons.devices),
icon: IconoFarolero(Icons.devices),
),
],
selected: {_modoMultimovil},
@@ -490,7 +490,7 @@ class _PantallaCrearPartidaState extends State<PantallaCrearPartida> {
const SizedBox(width: 8),
IconButton.filled(
onPressed: _agregarJugador,
icon: const Icon(Icons.add),
icon: IconoFarolero(Icons.add),
),
],
),
@@ -529,7 +529,7 @@ class _PantallaCrearPartidaState extends State<PantallaCrearPartida> {
? Text(l10n.mainDeviceUser)
: null,
trailing: esPerfilLocal
? const Icon(Icons.lock, color: TemaApp.colorDorado)
? IconoFarolero(Icons.lock, color: TemaApp.colorDorado)
: IconButton(
icon: const Icon(
Icons.close,
@@ -570,7 +570,7 @@ class _PantallaCrearPartidaState extends State<PantallaCrearPartida> {
onPressed: _numImpostores > 1
? () => setState(() => _numImpostores--)
: null,
icon: const Icon(Icons.remove_circle_outline),
icon: IconoFarolero(Icons.remove_circle_outline),
),
Text(
'$_numImpostores',
@@ -580,7 +580,7 @@ class _PantallaCrearPartidaState extends State<PantallaCrearPartida> {
onPressed: _numImpostores < _maxImpostores
? () => setState(() => _numImpostores++)
: null,
icon: const Icon(Icons.add_circle_outline),
icon: IconoFarolero(Icons.add_circle_outline),
),
],
),