AuthTextField constructor

AuthTextField({
  1. required String name,
  2. TextEditingController? textEditingController,
  3. Widget? title,
  4. List<String? Function(dynamic)> validators = const [],
  5. dynamic value = '',
  6. TextStyle? textStyle,
  7. dynamic onChange(
    1. String value
    )?,
  8. InputDecoration? textFieldDecoration,
  9. EdgeInsets padding = const EdgeInsets.all(8.0),
})

Constructs an AuthTextField object.

name specifies the name of the field.

textEditingController controller for the text input (optional).

title specifies the title widget of the field (optional).

validators defines a list of validation functions for the field (optional).

value specifies the initial value of the field (default is an empty string).

textStyle defines the text style for the text input.

onChange is a callback function triggered when the value of the field changes.

textFieldDecoration defines the decoration for the text input field (optional).

padding defines the padding around the text input field (default is EdgeInsets.all(8.0)).

Implementation

AuthTextField({
  required super.name,
  TextEditingController? textEditingController,
  super.title,
  super.validators = const [],
  super.value = '',
  this.textStyle,
  this.onChange,
  this.textFieldDecoration,
  this.padding = const EdgeInsets.all(8.0),
}) {
  textController =
      textEditingController ?? TextEditingController(text: value);
}