From 97b1e0a066fa5c033023194ce13d71a70a1d584a Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Thu, 23 Apr 2026 10:38:21 +0200 Subject: [PATCH] widen welcome screen columns to 864px max 20% wider than 720px for better readability on wide displays. Co-Authored-By: Claude Opus 4.6 (1M context) --- lib/builtin/welcome/src/welcome_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/builtin/welcome/src/welcome_view.dart b/lib/builtin/welcome/src/welcome_view.dart index 31a21e57..018b4d20 100644 --- a/lib/builtin/welcome/src/welcome_view.dart +++ b/lib/builtin/welcome/src/welcome_view.dart @@ -17,7 +17,7 @@ class WelcomeView extends StatelessWidget { children: [ Center( child: ConstrainedBox( - constraints: const BoxConstraints(maxWidth: 720), + constraints: const BoxConstraints(maxWidth: 850), child: Column( mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.start,