StepperTheme constructor

const StepperTheme(
  1. {double linePadding = 10,
  2. double lineWidth = 2,
  3. double lineDashLength = 5,
  4. double lineDashGapLength = 3,
  5. Color lineColor = Colors.black,
  6. StepIndicatorTheme stepIndicatorTheme = const StepIndicatorTheme(),
  7. double stepIndicatorSize = 30,
  8. IconData iconDone = Icons.check,
  9. double iconSize = 20,
  10. double emptyHeight = 100,
  11. double emptyWidth = 100,
  12. double paddingTopForCenterContent = 10,
  13. bool useIndicator = false,
  14. double? lineHeight = 0}
)

The theme for the MultiStepperView.

Implementation

const StepperTheme({
  this.linePadding = 10,
  this.lineWidth = 2,
  this.lineDashLength = 5,
  this.lineDashGapLength = 3,
  this.lineColor = Colors.black,
  this.stepIndicatorTheme = const StepIndicatorTheme(),
  this.stepIndicatorSize = 30,
  this.iconDone = Icons.check,
  this.iconSize = 20,
  this.emptyHeight = 100,
  this.emptyWidth = 100,
  this.paddingTopForCenterContent = 10,
  this.useIndicator = false,
  this.lineHeight = 0,
});