[mob][photos] Fix

This commit is contained in:
ashilkn 2024-11-07 23:59:18 +05:30
parent 25b26ec303
commit 65131a15ef

View File

@ -186,20 +186,18 @@ class _ClusterPageState extends State<ClusterPage> {
key: ValueKey(files.length),
),
),
body: Expanded(
child: SelectionState(
selectedFiles: _selectedFiles,
child: Stack(
alignment: Alignment.bottomCenter,
children: [
gallery,
FileSelectionOverlayBar(
ClusterPage.overlayType,
_selectedFiles,
clusterID: widget.clusterID,
),
],
),
body: SelectionState(
selectedFiles: _selectedFiles,
child: Stack(
alignment: Alignment.bottomCenter,
children: [
gallery,
FileSelectionOverlayBar(
ClusterPage.overlayType,
_selectedFiles,
clusterID: widget.clusterID,
),
],
),
),
),