From 7a0be153596deb8282837a34fc4dbb827250b7ca Mon Sep 17 00:00:00 2001 From: zarzet Date: Mon, 13 Jul 2026 20:53:18 +0700 Subject: [PATCH] fix(artist): drop blurBackground stretch mode on the header Dormant until bouncing physics enabled real overscroll; the stretch zoom stays, but blurring the artist image while it grows looked broken. --- lib/screens/artist_screen.dart | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/screens/artist_screen.dart b/lib/screens/artist_screen.dart index 11f88009..61c64c22 100644 --- a/lib/screens/artist_screen.dart +++ b/lib/screens/artist_screen.dart @@ -1347,10 +1347,7 @@ class _ArtistScreenState extends ConsumerState ), ], ), - stretchModes: const [ - StretchMode.zoomBackground, - StretchMode.blurBackground, - ], + stretchModes: const [StretchMode.zoomBackground], ), leading: IconButton( tooltip: MaterialLocalizations.of(context).backButtonTooltip,