Browse Source

Fixed motion play icon in light mode mobile

Alex Tran 2 years ago
parent
commit
e01e4e6530
1 changed files with 8 additions and 2 deletions
  1. 8 2
      mobile/lib/modules/asset_viewer/ui/top_control_app_bar.dart

+ 8 - 2
mobile/lib/modules/asset_viewer/ui/top_control_app_bar.dart

@@ -48,8 +48,14 @@ class TopControlAppBar extends HookConsumerWidget with PreferredSizeWidget {
               onToggleMotionVideo();
               onToggleMotionVideo();
             },
             },
             icon: isPlayingMotionVideo
             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)
         if (!asset.isLocal)
           IconButton(
           IconButton(