ProgressBarTheme constructor

const ProgressBarTheme({
  1. Decoration primaryStyle = const BoxDecoration(color: Colors.white70),
  2. Decoration secondartStyle = const BoxDecoration(color: Colors.white24),
  3. Decoration backgroundStyle = const BoxDecoration(color: Colors.black),
  4. TextStyle progressTimeStyle = const TextStyle(fontSize: 12, color: Colors.white),
  5. double progressbarHeight = 7,
})

Progress Bar Theme

Theme of the progress bar ProgressBarTheme

Implementation

const ProgressBarTheme({
  this.primaryStyle = const BoxDecoration(
    color: Colors.white70,
  ),
  this.secondartStyle = const BoxDecoration(
    color: Colors.white24,
  ),
  this.backgroundStyle = const BoxDecoration(
    color: Colors.black,
  ),
  this.progressTimeStyle = const TextStyle(
    fontSize: 12,
    color: Colors.white,
  ),
  this.progressbarHeight = 7,
});