más mejoras

This commit is contained in:
2026-05-10 23:54:09 +02:00
parent 873a5b7f4a
commit a93bab290a
42 changed files with 1365 additions and 784 deletions

View File

@@ -490,11 +490,16 @@ class _PantallaCrearPartidaState extends State<PantallaCrearPartida> {
final esPerfilLocal =
e.key == 0 && e.value == nombrePerfil;
return ListTile(
minLeadingWidth: 62,
leading: esPerfilLocal
? AvatarFarolero(
texto: inicialPerfil,
assetPath: perfil.avatarAsset,
size: 54,
? SizedBox(
width: 62,
height: 62,
child: AvatarFarolero(
texto: inicialPerfil,
assetPath: perfil.avatarAsset,
size: 52,
),
)
: CircleAvatar(
backgroundColor: TemaApp.colorTarjeta,
@@ -516,7 +521,6 @@ class _PantallaCrearPartidaState extends State<PantallaCrearPartida> {
),
onPressed: () => _eliminarJugador(e.key),
),
dense: true,
);
}),
],