From 445218088ff85a0b8adffe09a695465d22c32937 Mon Sep 17 00:00:00 2001 From: Xin Yao Date: Mon, 19 Jul 2021 16:53:38 -0700 Subject: [PATCH] Update video play button color --- lib/src/widgets/video_app.dart | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lib/src/widgets/video_app.dart b/lib/src/widgets/video_app.dart index f66aaa26..0bf67179 100644 --- a/lib/src/widgets/video_app.dart +++ b/lib/src/widgets/video_app.dart @@ -50,11 +50,13 @@ class _VideoAppState extends State { : const CircularProgressIndicator()), _controller.value.isPlaying || !_controller.value.isInitialized ? const SizedBox.shrink() - : const Icon( - Icons.play_arrow, - size: 60, - color: Colors.white, - ) + : Container( + color: const Color(0x00fafafa), + child: const Icon( + Icons.play_arrow, + size: 60, + color: Colors.blueGrey, + )) ]), ), );