CustomInputTheme constructor

const CustomInputTheme({
  1. TextStyle? style,
  2. TextStyle? placeholderStyle,
  3. Color? cursorColor,
  4. double? cursorWidth,
  5. double? cursorHeight,
  6. Radius? cursorRadius,
  7. bool? cursorOpacityAnimates,
  8. EdgeInsetsGeometry? padding,
  9. EdgeInsetsGeometry? inputPadding,
  10. AlignmentGeometry? alignment,
  11. AlignmentGeometry? placeholderAlignment,
  12. MainAxisAlignment? mainAxisAlignment,
  13. CrossAxisAlignment? crossAxisAlignment,
  14. double gap = 8.0,
  15. double verticalGap = 0.0,
  16. BoxConstraints? constraints,
  17. EdgeInsetsGeometry? scrollbarPadding,
  18. BoxDecoration? decoration,
  19. BoxDecoration? focusedDecoration,
  20. BoxDecoration? disabledDecoration,
})

Creates a CustomInputTheme.

Implementation

const CustomInputTheme({
  this.style,
  this.placeholderStyle,
  this.cursorColor,
  this.cursorWidth,
  this.cursorHeight,
  this.cursorRadius,
  this.cursorOpacityAnimates,
  this.padding,
  this.inputPadding,
  this.alignment,
  this.placeholderAlignment,
  this.mainAxisAlignment,
  this.crossAxisAlignment,
  this.gap = 8.0,
  this.verticalGap = 0.0,
  this.constraints,
  this.scrollbarPadding,
  this.decoration,
  this.focusedDecoration,
  this.disabledDecoration,
});