From 0143c744155ea52018f66f45afe7322647b21184 Mon Sep 17 00:00:00 2001 From: stopflock Date: Tue, 18 Nov 2025 16:21:31 -0600 Subject: [PATCH] Reasonable size limits for tag text boxes in sheets --- lib/dev_config.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/dev_config.dart b/lib/dev_config.dart index ba4018e..82ed519 100644 --- a/lib/dev_config.dart +++ b/lib/dev_config.dart @@ -80,8 +80,8 @@ const Duration kFollowMeAnimationDuration = Duration(milliseconds: 600); const double kMinSpeedForRotationMps = 1.0; // Minimum speed (m/s) to apply rotation // Sheet content configuration -const double kMaxTagListHeightRatioPortrait = 0.4; // Maximum height for tag lists in portrait mode -const double kMaxTagListHeightRatioLandscape = 0.3; // Maximum height for tag lists in landscape mode +const double kMaxTagListHeightRatioPortrait = 0.3; // Maximum height for tag lists in portrait mode +const double kMaxTagListHeightRatioLandscape = 0.2; // Maximum height for tag lists in landscape mode /// Get appropriate tag list height ratio based on screen orientation double getTagListHeightRatio(BuildContext context) {