SegmentedInputStyle constructor

const SegmentedInputStyle({
  1. Dim? segmentWidth,
  2. Dim? segmentHeight,
  3. Dim? gap,
  4. BorderData? border,
  5. BorderRadiusData? borderRadius,
  6. Color? hoverBorderColor,
  7. Color? focusBorderColor,
  8. Color? errorBorderColor,
  9. Color? backgroundColor,
  10. Color? filledBackgroundColor,
  11. TextStyle? textStyle,
  12. SegmentedInputShape shape = SegmentedInputShape.box,
  13. EdgeInsets? margin,
  14. EdgeInsets? padding,
})

Creates a SegmentedInputStyle instance.

Implementation

const SegmentedInputStyle({
  this.segmentWidth,
  this.segmentHeight,
  this.gap,
  this.border,
  this.borderRadius,
  this.hoverBorderColor,
  this.focusBorderColor,
  this.errorBorderColor,
  this.backgroundColor,
  this.filledBackgroundColor,
  this.textStyle,
  this.shape = SegmentedInputShape.box,
  this.margin,
  this.padding,
});