Update video play button color

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

@ -50,11 +50,13 @@ class _VideoAppState extends State<VideoApp> {
: 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,
))
]),
),
);

Loading…
Cancel
Save