Added Keyboard type, input restriction and different action buttons
This commit is contained in:
@@ -109,7 +109,7 @@ class _ActiveGameViewState extends State<ActiveGameView> {
|
||||
playerIndices.sort((a, b) {
|
||||
int scoreA = widget.gameSession.playerScores[a][0];
|
||||
int scoreB = widget.gameSession.playerScores[b][0];
|
||||
return scoreB.compareTo(scoreA); // Absteigende Sortierung
|
||||
return scoreA.compareTo(scoreB); // Absteigende Sortierung
|
||||
});
|
||||
print('playerIndices sortiert: $playerIndices');
|
||||
return playerIndices;
|
||||
|
||||
Reference in New Issue
Block a user