File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
mobile/lib/presentation/widgets/timeline Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ),
You can’t perform that action at this time.
0 commit comments