From e01e4e6530e7ee47894d893d8cdbcc09267752b8 Mon Sep 17 00:00:00 2001 From: Alex Tran Date: Sat, 19 Nov 2022 15:23:49 -0600 Subject: [PATCH] Fixed motion play icon in light mode mobile --- .../modules/asset_viewer/ui/top_control_app_bar.dart | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/mobile/lib/modules/asset_viewer/ui/top_control_app_bar.dart b/mobile/lib/modules/asset_viewer/ui/top_control_app_bar.dart index d06e90f10e..b326fbbd49 100644 --- a/mobile/lib/modules/asset_viewer/ui/top_control_app_bar.dart +++ b/mobile/lib/modules/asset_viewer/ui/top_control_app_bar.dart @@ -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(