From 868f7f505595dee43ed3e91f915e510a9dbe6961 Mon Sep 17 00:00:00 2001 From: dom Date: Fri, 6 Mar 2026 12:43:55 +0800 Subject: [PATCH] increase image max ratio Signed-off-by: dom --- lib/common/constants.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/constants.dart b/lib/common/constants.dart index 5e39900d1..ed8594f16 100644 --- a/lib/common/constants.dart +++ b/lib/common/constants.dart @@ -7,7 +7,7 @@ abstract final class StyleString { static const Radius imgRadius = Radius.circular(10); static const double aspectRatio = 16 / 10; static const double aspectRatio16x9 = 16 / 9; - static const double imgMaxRatio = 22 / 9; + static const double imgMaxRatio = 3.0; static const bottomSheetRadius = BorderRadius.vertical( top: Radius.circular(18), );