From 11dc8ffb17e6c09bbf21ec30c7e6963ad819c1ed Mon Sep 17 00:00:00 2001 From: mertalev <101130780+mertalev@users.noreply.github.com> Date: Fri, 1 Aug 2025 13:27:56 -0400 Subject: [PATCH] not growable --- .../lib/presentation/widgets/timeline/fixed/segment.model.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/lib/presentation/widgets/timeline/fixed/segment.model.dart b/mobile/lib/presentation/widgets/timeline/fixed/segment.model.dart index 78c0744749..295df60f25 100644 --- a/mobile/lib/presentation/widgets/timeline/fixed/segment.model.dart +++ b/mobile/lib/presentation/widgets/timeline/fixed/segment.model.dart @@ -140,7 +140,7 @@ class _FixedSegmentRow extends ConsumerWidget { segmentIndex: 0, // For simplicity, using 0 for now child: _AssetTileWidget(asset: assets?[i], assetIndex: curAssetIndex), ); - }), + }, growable: false), ); } }