TextFieldTheme constructor

const TextFieldTheme({
  1. Border? border,
  2. BorderRadiusGeometry? borderRadius,
  3. bool? filled,
  4. EdgeInsetsGeometry? padding,
})

Creates a TextFieldTheme.

Parameters:

  • border (Border?, optional): Border style.
  • borderRadius (BorderRadiusGeometry?, optional): Corner rounding.
  • filled (bool?, optional): Whether background is filled.
  • padding (EdgeInsetsGeometry?, optional): Internal padding.

Implementation

const TextFieldTheme({
  this.border,
  this.borderRadius,
  this.filled,
  this.padding,
});