From 10fddf2d51611d7d3a6652847f7272ae0326f1e3 Mon Sep 17 00:00:00 2001 From: shenlong <139912620+shenlong-tanwen@users.noreply.github.com> Date: Tue, 16 Jun 2026 19:43:28 +0530 Subject: [PATCH] fix: resize map after scroll (#29112) Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> --- .../widgets/bottom_sheet/map_bottom_sheet.widget.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mobile/lib/presentation/widgets/bottom_sheet/map_bottom_sheet.widget.dart b/mobile/lib/presentation/widgets/bottom_sheet/map_bottom_sheet.widget.dart index f905940c5e..945bdc9584 100644 --- a/mobile/lib/presentation/widgets/bottom_sheet/map_bottom_sheet.widget.dart +++ b/mobile/lib/presentation/widgets/bottom_sheet/map_bottom_sheet.widget.dart @@ -23,7 +23,9 @@ class MapBottomSheet extends StatelessWidget { resizeOnScroll: false, actions: [], backgroundColor: context.themeData.colorScheme.surface, - slivers: [const SliverFillRemaining(hasScrollBody: true, child: _ScopedMapTimeline())], + slivers: [ + const SliverFillRemaining(hasScrollBody: false, child: SizedBox(height: 0, child: _ScopedMapTimeline())), + ], ); } }