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:
parent
aac029d92b
commit
47f6181d42
1 changed files with 7 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue