From b9215588b9b92c0f877006282901da62276dd554 Mon Sep 17 00:00:00 2001 From: Thomas Fransolet Date: Wed, 3 Jul 2024 16:42:50 +0200 Subject: [PATCH] Updated price zone height --- lib/Screens/Map/marker_view.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Screens/Map/marker_view.dart b/lib/Screens/Map/marker_view.dart index 43f3d16..7cae0d0 100644 --- a/lib/Screens/Map/marker_view.dart +++ b/lib/Screens/Map/marker_view.dart @@ -173,7 +173,7 @@ class _MarkerInfoWidget extends State { child: Column( children: [ Container( - height: isPointPrice && selectedPoint.prices!.firstWhere((d) => d.language == language).value!.length > breakPointPrice ? size.height * 0.45 : size.height * 0.7, + height: isPointPrice && selectedPoint.prices!.firstWhere((d) => d.language == language).value!.length > breakPointPrice ? size.height * 0.50 : size.height * 0.7, width: size.width * 0.38, decoration: BoxDecoration( color: kBackgroundLight, @@ -210,7 +210,7 @@ class _MarkerInfoWidget extends State { ), if(isPointPrice && selectedPoint.prices!.firstWhere((d) => d.language == language).value!.length > breakPointPrice) Container( - height: size.height * 0.25, + height: size.height * 0.20, width: size.width * 0.38, decoration: BoxDecoration( color: kBackgroundLight,