This commit is contained in:
2025-07-19 15:44:54 +02:00
parent 039dfffb54
commit 1cf7fdbac3

View File

@@ -54,14 +54,14 @@ class _PointOverviewViewState extends State<PointOverviewView> {
rows: [ rows: [
...List<DataRow>.generate( ...List<DataRow>.generate(
widget.gameSession.roundList.length, widget.gameSession.roundList.length,
(roundIndex) { (roundNumber) {
final round = widget.gameSession.roundList[roundIndex]; final round = widget.gameSession.roundList[roundNumber];
return DataRow( return DataRow(
cells: [ cells: [
DataCell(Align( DataCell(Align(
alignment: Alignment.center, alignment: Alignment.center,
child: Text( child: Text(
'$roundIndex', '$roundNumber',
style: const TextStyle(fontSize: 20), style: const TextStyle(fontSize: 20),
), ),
)), )),