StandardTextField constructor

const StandardTextField({
  1. Key? key,
  2. String? initialValue,
  3. FormFieldValidator<String>? validator,
  4. int? minLines,
  5. int? maxLines,
  6. FocusNode? focusNode,
  7. TextEditingController? controller,
  8. bool enabled = true,
  9. bool autofocus = false,
  10. required String labelText,
  11. required dynamic onChanged(
    1. String?
    ),
})

Implementation

const StandardTextField({
  super.key,
  this.initialValue,
  this.validator,
  this.minLines,
  this.maxLines,
  this.focusNode,
  this.controller,
  this.enabled = true,
  this.autofocus = false,
  required this.labelText,
  required this.onChanged,
});