ProgressBarTheme constructor
const
ProgressBarTheme({
- Decoration primaryStyle = const BoxDecoration(color: Colors.white70),
- Decoration secondartStyle = const BoxDecoration(color: Colors.white24),
- Decoration backgroundStyle = const BoxDecoration(color: Colors.black),
- TextStyle progressTimeStyle = const TextStyle(fontSize: 12, color: Colors.white),
- 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,
});