Skip to content

Commit e5eb48e

Browse files
rebase
1 parent b4414ff commit e5eb48e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mobile/lib/presentation/widgets/timeline/timeline.widget.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ class Timeline extends StatelessWidget {
8585
appBar: appBar,
8686
bottomSheet: bottomSheet,
8787
withScrubber: withScrubber,
88+
persistentBottomBar: persistentBottomBar,
8889
snapToMonth: snapToMonth,
8990
initialScrollOffset: initialScrollOffset,
9091
maxWidth: constraints.maxWidth,
@@ -468,7 +469,7 @@ class _SliverTimelineState extends ConsumerState<_SliverTimeline> {
468469
child: Stack(
469470
children: [
470471
timeline,
471-
if (!isSelectionMode && isMultiSelectEnabled) ...[
472+
if (isBottomWidgetVisible)
472473
Positioned(
473474
top: MediaQuery.paddingOf(context).top,
474475
left: 25,
@@ -477,8 +478,7 @@ class _SliverTimelineState extends ConsumerState<_SliverTimeline> {
477478
child: Center(child: _MultiSelectStatusButton()),
478479
),
479480
),
480-
if (widget.bottomSheet != null) widget.bottomSheet!,
481-
],
481+
if (isBottomWidgetVisible) widget.bottomSheet!,
482482
],
483483
),
484484
),

0 commit comments

Comments
 (0)