Update video play button color

pull/307/head
Xin Yao 4 years ago
parent 71c26c11b0
commit 445218088f
  1. 8
      lib/src/widgets/video_app.dart

@ -50,11 +50,13 @@ class _VideoAppState extends State<VideoApp> {
: const CircularProgressIndicator()), : const CircularProgressIndicator()),
_controller.value.isPlaying || !_controller.value.isInitialized _controller.value.isPlaying || !_controller.value.isInitialized
? const SizedBox.shrink() ? const SizedBox.shrink()
: const Icon( : Container(
color: const Color(0x00fafafa),
child: const Icon(
Icons.play_arrow, Icons.play_arrow,
size: 60, size: 60,
color: Colors.white, color: Colors.blueGrey,
) ))
]), ]),
), ),
); );

Loading…
Cancel
Save