TextFieldTheme constructor
const
TextFieldTheme({
- Border? border,
- BorderRadiusGeometry? borderRadius,
- bool? filled,
- 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,
});