[mob][photos] Use better icon for switching to media_kit on video player

This commit is contained in:
ashilkn
2024-12-18 15:40:09 +05:30
parent 0d920a35e7
commit 80857d5441

View File

@@ -405,14 +405,31 @@ class _VideoWidgetNativeState extends State<VideoWidgetNative>
.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,
),
),
],
),
),
),