diff --git a/mobile/lib/ui/collections/flex_grid_view.dart b/mobile/lib/ui/collections/flex_grid_view.dart index 646fd7a359..bc3a6bfa5b 100644 --- a/mobile/lib/ui/collections/flex_grid_view.dart +++ b/mobile/lib/ui/collections/flex_grid_view.dart @@ -111,7 +111,7 @@ class _CollectionsFlexiGridViewWidgetState albumsCountInOneRow; final List gridItems = []; - if (widget.shouldShowCreateAlbum) { + if (widget.shouldShowCreateAlbum && !isAnyAlbumSelected) { gridItems.add( NewAlbumRowItemWidget( height: sideOfThumbnail, @@ -168,7 +168,7 @@ class _CollectionsFlexiGridViewWidgetState Widget _buildListView(BuildContext context, Key key) { final List listItems = []; - if (widget.shouldShowCreateAlbum) { + if (widget.shouldShowCreateAlbum && !isAnyAlbumSelected) { listItems.add( GestureDetector( onTap: () async {