Changed SegmendetControl size proportional to player names length

This commit is contained in:
Felix Kirchner
2025-04-22 20:52:52 +02:00
parent 20a3a828b3
commit 6f57a952ed
2 changed files with 19 additions and 5 deletions

View File

@@ -30,6 +30,15 @@ class GameSession {
'playerScores: $playerScores]');
}
int getLengthOfPlayerNames() {
int length = 0;
for (String player in players) {
length += player.length;
}
print('Namenslänge: $length');
return length;
}
/// Returns a string representation of the scores for a specific round.
/// The method takes a round number as a parameter and returns a string
/// containing the name of each player and their corressponding score in