mirror of
https://github.com/immich-app/immich.git
synced 2025-03-18 02:31:28 -05:00
Fixes image blur
This commit is contained in:
parent
b05d4fa7d3
commit
c0ef300040
1 changed files with 4 additions and 4 deletions
|
@ -723,10 +723,10 @@ class GalleryViewerPage extends HookConsumerWidget {
|
|||
isZoomed.value = state != PhotoViewScaleState.initial;
|
||||
ref.read(showControlsProvider.notifier).show = !isZoomed.value;
|
||||
},
|
||||
loadingBuilder: (context, event, index) => BackdropFilter(
|
||||
filter: ui.ImageFilter.blur(
|
||||
sigmaX: 0.2,
|
||||
sigmaY: 0.2,
|
||||
loadingBuilder: (context, event, index) => ImageFiltered(
|
||||
imageFilter: ui.ImageFilter.blur(
|
||||
sigmaX: 1,
|
||||
sigmaY: 1,
|
||||
),
|
||||
child: ImmichThumbnail(
|
||||
asset: asset(),
|
||||
|
|
Loading…
Add table
Reference in a new issue