From 80857d5441f0a6797ffd42b4f043b11e16f75593 Mon Sep 17 00:00:00 2001 From: ashilkn Date: Wed, 18 Dec 2024 15:40:09 +0530 Subject: [PATCH] [mob][photos] Use better icon for switching to media_kit on video player --- .../ui/viewer/file/video_widget_native.dart | 33 ++++++++++++++----- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/mobile/lib/ui/viewer/file/video_widget_native.dart b/mobile/lib/ui/viewer/file/video_widget_native.dart index 9c3755dcc0..9151011314 100644 --- a/mobile/lib/ui/viewer/file/video_widget_native.dart +++ b/mobile/lib/ui/viewer/file/video_widget_native.dart @@ -405,14 +405,31 @@ class _VideoWidgetNativeState extends State .all( 12, ), - child: Icon( - Icons - .question_mark_rounded, - size: 16, - color: Colors.white - .withOpacity( - 0.2, - ), + child: Stack( + alignment: Alignment + .bottomRight, + children: [ + Icon( + Icons + .play_arrow_outlined, + size: 24, + color: Colors + .white + .withOpacity( + 0.2, + ), + ), + Icon( + Icons + .question_mark_rounded, + size: 10, + color: Colors + .white + .withOpacity( + 0.2, + ), + ), + ], ), ), ),