fix: conditionally show cover header in artist skeleton and add showCoverHeader param to ArtistScreenSkeleton

This commit is contained in:
zarzet
2026-03-27 04:35:22 +07:00
parent 8979210804
commit 0b20cb895e
2 changed files with 18 additions and 6 deletions
+9 -1
View File
@@ -492,7 +492,15 @@ class _ArtistScreenState extends ConsumerState<ArtistScreen> {
hasDiscography: hasDiscography,
),
if (_isLoadingDiscography)
const SliverToBoxAdapter(child: ArtistScreenSkeleton()),
SliverToBoxAdapter(
child: ArtistScreenSkeleton(
showCoverHeader:
(_headerImageUrl ??
widget.headerImageUrl ??
widget.coverUrl) ==
null,
),
),
if (_error != null)
SliverToBoxAdapter(
child: Padding(