BasicSeekbar constructor
const
BasicSeekbar({
- Key? key,
- double min = 0,
- double max = 100,
- double value = 0,
- double? progressHeight,
- int? sectionCount,
- Color? sectionColor,
- Color? sectionUnSelectColor,
- double? sectionRadius,
- bool? showSectionText,
- List<
SectionTextModel> ? sectionTexts, - double? sectionTextSize,
- bool? afterDragShowSectionText,
- Color? sectionTextColor,
- Color? sectionSelectTextColor,
- int? sectionDecimal,
- required double sectionTextMarginTop,
- Color? backgroundColor,
- Color? progressColor,
- String? semanticsLabel,
- String? semanticsValue,
- double? indicatorRadius,
- Color? indicatorColor,
- ValueChanged<
ProgressValue> ? onValueChanged, - bool? isRound = true,
Implementation
const BasicSeekbar(
{Key? key,
this.min = 0,
this.max = 100,
this.value = 0,
this.progressHeight,
this.sectionCount,
this.sectionColor,
this.sectionUnSelectColor,
this.sectionRadius,
this.showSectionText,
this.sectionTexts,
this.sectionTextSize,
this.afterDragShowSectionText,
this.sectionTextColor,
this.sectionSelectTextColor,
this.sectionDecimal,
required this.sectionTextMarginTop,
this.backgroundColor,
this.progressColor,
this.semanticsLabel,
this.semanticsValue,
this.indicatorRadius,
this.indicatorColor,
this.onValueChanged,
this.isRound = true})
: super(key: key);