From af3604e1c902ec0327b3ebe10db1ae89ca466502 Mon Sep 17 00:00:00 2001 From: Xin Yao Date: Mon, 19 Jul 2021 16:57:34 -0700 Subject: [PATCH] Make transparency 100% for background color of video play button --- lib/src/widgets/video_app.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/widgets/video_app.dart b/lib/src/widgets/video_app.dart index 0bf67179..56093e6f 100644 --- a/lib/src/widgets/video_app.dart +++ b/lib/src/widgets/video_app.dart @@ -51,7 +51,7 @@ class _VideoAppState extends State { _controller.value.isPlaying || !_controller.value.isInitialized ? const SizedBox.shrink() : Container( - color: const Color(0x00fafafa), + color: const Color(0xfffafafa), child: const Icon( Icons.play_arrow, size: 60,