buildProgressBar method

Widget buildProgressBar()

Implementation

Widget buildProgressBar() {
  return Padding(
    padding: const EdgeInsets.only(left: 20, right: 20),
    child: BetterVideoPlayerProgressBar(
      onDragStart: widget.onDragStart,
      onDragEnd: widget.onDragEnd,
      colors: BetterVideoPlayerProgressColors(
        playedColor: Color(0xFFFF671F),
        handleColor: Colors.white,
        bufferedColor: Colors.white54,
        backgroundColor: Colors.white38,
      ),
    ),
  );
}