Easier to tap on video seek bar

This commit is contained in:
Ming Ming 2021-05-06 22:15:00 +08:00
parent 5ca19c6c4f
commit 6927f94d54

View file

@ -121,13 +121,14 @@ class _VideoViewerState extends State<VideoViewer> {
alignment: Alignment.bottomCenter,
child: Padding(
padding: EdgeInsets.only(
bottom: kToolbarHeight + 16, left: 16, right: 16),
bottom: kToolbarHeight + 8, left: 16, right: 16),
child: AnimatedVisibility(
opacity: widget.isControlVisible ? 1.0 : 0.0,
duration: k.animationDurationNormal,
child: VideoProgressIndicator(
_controller,
allowScrubbing: true,
padding: const EdgeInsets.symmetric(vertical: 8),
colors: VideoProgressColors(
backgroundColor: Colors.white24,
bufferedColor: Colors.white38,