fix(mobile): thumbnail shimmering effect (#22158)

full opacity
This commit is contained in:
Mert 2025-09-17 23:29:37 -04:00 committed by GitHub
parent 2d816e89ad
commit 0b60cc8965
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -326,7 +326,7 @@ class _ThumbnailRenderBox extends RenderBox {
image: _previousImage!,
fit: _fit,
filterQuality: FilterQuality.low,
opacity: 1.0 - _fadeValue,
opacity: 1.0,
);
} else if (_image == null || _fadeValue < 1.0) {
final paint = Paint()..shader = _placeholderGradient.createShader(rect);