AdeptTextFieldTheme constructor

AdeptTextFieldTheme({
  1. TextStyle? labelTextStyle,
  2. TextStyle? hintTextStyle,
  3. TextStyle? valueTextStyle,
  4. EdgeInsets labelPadding = const EdgeInsets.only(bottom: 5),
  5. EdgeInsets fieldPadding = const EdgeInsets.only(left: 10, right: 10, top: 10),
  6. double height = 45,
  7. InputDecoration? inputDecoration,
})

Constructor allows you to define styling and value properties.

Implementation

AdeptTextFieldTheme({
  super.labelTextStyle,
  super.hintTextStyle,
  super.valueTextStyle,
  super.labelPadding,
  super.fieldPadding,
  this.height = 45,
  this.inputDecoration,
});