FTimePickerStyle constructor

const FTimePickerStyle({
  1. required TextStyle textStyle,
  2. required Decoration selectionDecoration,
  3. required FFocusedOutlineStyle focusedOutlineStyle,
  4. double diameterRatio = 1.07,
  5. double squeeze = 1,
  6. double magnification = 1,
  7. double overAndUnderCenterOpacity = 0.25,
  8. double spacing = 0,
  9. TextHeightBehavior textHeightBehavior = const TextHeightBehavior(applyHeightToFirstAscent: false, applyHeightToLastDescent: false),
  10. double selectionHeightAdjustment = 5,
  11. EdgeInsetsDirectional padding = const .only(start: 10, end: 10),
})

Creates a FTimePickerStyle.

Implementation

const FTimePickerStyle({
  required super.textStyle,
  required super.selectionDecoration,
  required super.focusedOutlineStyle,
  super.diameterRatio,
  super.squeeze,
  super.magnification,
  super.overAndUnderCenterOpacity,
  super.spacing = 0,
  super.textHeightBehavior = const TextHeightBehavior(
    applyHeightToFirstAscent: false,
    applyHeightToLastDescent: false,
  ),
  super.selectionHeightAdjustment = 5,
  this.padding = const .only(start: 10, end: 10),
});