From e832f3fd93db40d9ea257e5b8c27c3866a8d257b Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sat, 17 Jan 2026 16:04:18 +0800 Subject: [PATCH] :bug: Fix dashboard customize issue --- lib/screens/dashboard/dash.dart | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/screens/dashboard/dash.dart b/lib/screens/dashboard/dash.dart index 6e66405b..fe38e1b9 100644 --- a/lib/screens/dashboard/dash.dart +++ b/lib/screens/dashboard/dash.dart @@ -357,6 +357,11 @@ class _DashboardGridWide extends HookConsumerWidget { children.add(DashboardRenderer.buildColumn(columnId, ref)); } + // If no children, add a SizedBox.expand to maintain width + if (children.isEmpty) { + children.add(SizedBox(width: MediaQuery.sizeOf(context).width)); + } + return Row(spacing: 16, children: children); } }