[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), key: ValueKey(files.length),
), ),
), ),
body: Expanded( body: SelectionState(
child: SelectionState( selectedFiles: _selectedFiles,
selectedFiles: _selectedFiles, child: Stack(
child: Stack( alignment: Alignment.bottomCenter,
alignment: Alignment.bottomCenter, children: [
children: [ gallery,
gallery, FileSelectionOverlayBar(
FileSelectionOverlayBar( ClusterPage.overlayType,
ClusterPage.overlayType, _selectedFiles,
_selectedFiles, clusterID: widget.clusterID,
clusterID: widget.clusterID, ),
), ],
],
),
), ),
), ),
), ),