algunos iconos PRO
This commit is contained in:
@@ -804,12 +804,14 @@ class _PantallaGestorHostState extends State<PantallaGestorHost> {
|
||||
return BotonFarolero.secundario(
|
||||
texto: l10n.goToVoting,
|
||||
icono: Icons.how_to_vote,
|
||||
assetIconPath: 'assets/ui/generated/actions/action_vote_mask.webp',
|
||||
onPressed: () => _avanzarAFase(FaseJuego.votacion),
|
||||
);
|
||||
case FaseJuego.votacion:
|
||||
return BotonFarolero(
|
||||
texto: todosVotaron ? l10n.revealResult : l10n.waitingVoting,
|
||||
icono: Icons.visibility,
|
||||
assetIconPath: 'assets/ui/generated/actions/action_result_trophy.webp',
|
||||
onPressed: todosVotaron ? () => _avanzarAFase(FaseJuego.resultado) : null,
|
||||
);
|
||||
case FaseJuego.resultado:
|
||||
@@ -843,6 +845,7 @@ class _PantallaGestorHostState extends State<PantallaGestorHost> {
|
||||
return BotonFarolero(
|
||||
texto: l10n.seeEndResult,
|
||||
icono: Icons.emoji_events,
|
||||
assetIconPath: 'assets/ui/generated/actions/action_result_trophy.webp',
|
||||
onPressed: () => _finalizarPartidaOnline(context),
|
||||
);
|
||||
}
|
||||
@@ -853,6 +856,7 @@ class _PantallaGestorHostState extends State<PantallaGestorHost> {
|
||||
BotonFarolero.oscuro(
|
||||
texto: l10n.impostorGuessWord,
|
||||
icono: Icons.psychology,
|
||||
assetIconPath: 'assets/ui/generated/actions/action_impostor_mask.webp',
|
||||
onPressed: () => _iniciarAdivinanzaOnline(context),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
@@ -878,6 +882,7 @@ class _PantallaGestorHostState extends State<PantallaGestorHost> {
|
||||
BotonFarolero(
|
||||
texto: l10n.guess,
|
||||
icono: Icons.check_circle,
|
||||
assetIconPath: 'assets/ui/generated/actions/action_impostor_mask.webp',
|
||||
onPressed: () => _resolverAdivinanzaOnline(context),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
|
||||
Reference in New Issue
Block a user