mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
Fixed motion play icon in light mode mobile
This commit is contained in:
parent
6ed072f67b
commit
e01e4e6530
1 changed files with 8 additions and 2 deletions
|
@ -48,8 +48,14 @@ class TopControlAppBar extends HookConsumerWidget with PreferredSizeWidget {
|
||||||
onToggleMotionVideo();
|
onToggleMotionVideo();
|
||||||
},
|
},
|
||||||
icon: isPlayingMotionVideo
|
icon: isPlayingMotionVideo
|
||||||
? const Icon(Icons.motion_photos_pause_outlined)
|
? Icon(
|
||||||
: const Icon(Icons.play_circle_outline_rounded),
|
Icons.motion_photos_pause_outlined,
|
||||||
|
color: Colors.grey[200],
|
||||||
|
)
|
||||||
|
: Icon(
|
||||||
|
Icons.play_circle_outline_rounded,
|
||||||
|
color: Colors.grey[200],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
if (!asset.isLocal)
|
if (!asset.isLocal)
|
||||||
IconButton(
|
IconButton(
|
||||||
|
|
Loading…
Reference in a new issue