forked from Cutlery/immich
fix(mobile): Uses ImageFiltered for performance (#3051)
* Uses ImageFiltered for performance * values --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
This commit is contained in:
parent
e477f99c7d
commit
734f8e02b5
@ -54,27 +54,24 @@ class MemoryCard extends HookConsumerWidget {
|
|||||||
clipBehavior: Clip.hardEdge,
|
clipBehavior: Clip.hardEdge,
|
||||||
child: Stack(
|
child: Stack(
|
||||||
children: [
|
children: [
|
||||||
Container(
|
ImageFiltered(
|
||||||
decoration: BoxDecoration(
|
imageFilter: ImageFilter.blur(sigmaX: 30, sigmaY: 30),
|
||||||
image: DecorationImage(
|
child: Container(
|
||||||
image: CachedNetworkImageProvider(
|
decoration: BoxDecoration(
|
||||||
getThumbnailUrl(
|
image: DecorationImage(
|
||||||
asset,
|
image: CachedNetworkImageProvider(
|
||||||
|
getThumbnailUrl(
|
||||||
|
asset,
|
||||||
|
),
|
||||||
|
cacheKey: getThumbnailCacheKey(
|
||||||
|
asset,
|
||||||
|
),
|
||||||
|
headers: {"Authorization": authToken},
|
||||||
),
|
),
|
||||||
cacheKey: getThumbnailCacheKey(
|
fit: BoxFit.cover,
|
||||||
asset,
|
|
||||||
),
|
|
||||||
headers: {"Authorization": authToken},
|
|
||||||
),
|
),
|
||||||
fit: BoxFit.cover,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
child: BackdropFilter(
|
|
||||||
filter: ImageFilter.blur(sigmaX: 60, sigmaY: 60),
|
|
||||||
child: Container(
|
|
||||||
decoration:
|
|
||||||
BoxDecoration(color: Colors.black.withOpacity(0.25)),
|
|
||||||
),
|
),
|
||||||
|
child: Container(color: Colors.black.withOpacity(0.2)),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
GestureDetector(
|
GestureDetector(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user