Renaming
This commit is contained in:
@@ -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),
|
||||||
),
|
),
|
||||||
)),
|
)),
|
||||||
|
|||||||
Reference in New Issue
Block a user