From 031509688169c1e2d46b718c936935e74e9617a4 Mon Sep 17 00:00:00 2001 From: Chralu Date: Thu, 13 Jun 2024 10:27:01 +0200 Subject: [PATCH] Extension chrome - Block window widening Fixes #974 --- lib/ui/widgets/components/window_size.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ui/widgets/components/window_size.dart b/lib/ui/widgets/components/window_size.dart index ef45043fc..85020ff87 100644 --- a/lib/ui/widgets/components/window_size.dart +++ b/lib/ui/widgets/components/window_size.dart @@ -10,6 +10,7 @@ class WindowSize { Size get idealSize { if (UniversalPlatform.isLinux) return const Size(430, 850); if (UniversalPlatform.isWeb) return const Size(500, 800); + if (UniversalPlatform.isMobile) return const Size(500, 800); return const Size(370, 800); }