From 20e2167e874e61853108a40869f760cc626e5db0 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Mon, 4 Aug 2025 22:53:25 +0200 Subject: [PATCH] Updated var order --- lib/presentation/views/points_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/presentation/views/points_view.dart b/lib/presentation/views/points_view.dart index 161d72e..8c08467 100644 --- a/lib/presentation/views/points_view.dart +++ b/lib/presentation/views/points_view.dart @@ -23,9 +23,9 @@ class _PointsViewState extends State { ), child: SafeArea(child: LayoutBuilder(builder: (context, constraints) { const double caboFieldWidthFactor = 0.2; - const double roundColWidth = 35; const double tablePadding = 8; final int playerCount = widget.gameSession.players.length; + const double roundColWidth = 35; final double playerColWidth = (constraints.maxWidth - roundColWidth - (tablePadding)) / playerCount;