1
0
mirror of https://github.com/immich-app/immich.git synced 2024-12-25 10:43:13 +02:00

Fixed motion play icon in light mode mobile

This commit is contained in:
Alex Tran 2022-11-19 15:23:49 -06:00
parent 6ed072f67b
commit e01e4e6530

View File

@ -48,8 +48,14 @@ class TopControlAppBar extends HookConsumerWidget with PreferredSizeWidget {
onToggleMotionVideo();
},
icon: isPlayingMotionVideo
? const Icon(Icons.motion_photos_pause_outlined)
: const Icon(Icons.play_circle_outline_rounded),
? Icon(
Icons.motion_photos_pause_outlined,
color: Colors.grey[200],
)
: Icon(
Icons.play_circle_outline_rounded,
color: Colors.grey[200],
),
),
if (!asset.isLocal)
IconButton(