feat: add characters

This commit is contained in:
2026-07-10 00:56:58 +03:30
parent 7c067d36f2
commit 97d156c492
28 changed files with 486 additions and 94 deletions
@@ -91,8 +91,12 @@ class _PlayerSeat extends StatelessWidget {
color: Colors.white70,
size: diameter * 0.5,
)
: RandomAvatar(
player.avatarSeed.isEmpty ? '?' : player.avatarSeed),
: PlayerAvatar(
seed: player.avatarSeed.isEmpty
? '?'
: player.avatarSeed,
imageUrl: player.avatarImg,
),
),
),
),