mirror of
https://github.com/immich-app/immich.git
synced 2025-05-31 12:15:47 -04: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:
parent
aac029d92b
commit
47f6181d42
@ -204,6 +204,13 @@ class ThumbnailImage extends ConsumerWidget {
|
|||||||
storageIcon(asset),
|
storageIcon(asset),
|
||||||
color: Colors.white.withOpacity(.8),
|
color: Colors.white.withOpacity(.8),
|
||||||
size: 16,
|
size: 16,
|
||||||
|
shadows: [
|
||||||
|
Shadow(
|
||||||
|
blurRadius: 5.0,
|
||||||
|
color: Colors.black.withOpacity(0.6),
|
||||||
|
offset: const Offset(0.0, 0.0),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (asset.isFavorite)
|
if (asset.isFavorite)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user