0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-02-11 01:18:24 -05:00

fix(mobile): improved the visibility of backup cloud icon on lighter images (#15886)

* fix(mobile): improved the visibility of backup cloud icon on lighter images

* refactor(mobile): add 'const' keyword to Offset constructor for improved performance
This commit is contained in:
Meesam 2025-02-04 02:00:39 +05:30 committed by GitHub
parent aac029d92b
commit 47f6181d42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -204,6 +204,13 @@ class ThumbnailImage extends ConsumerWidget {
storageIcon(asset),
color: Colors.white.withOpacity(.8),
size: 16,
shadows: [
Shadow(
blurRadius: 5.0,
color: Colors.black.withOpacity(0.6),
offset: const Offset(0.0, 0.0),
),
],
),
),
if (asset.isFavorite)