Control.textField constructor

Control.textField({
  1. required String key,
  2. String? title,
  3. String? description,
  4. Widget? content,
  5. void onChange(
    1. dynamic
    )?,
  6. String? defaultValue,
  7. TextInputType? keyboardType,
  8. FormFieldValidator<String>? validator,
  9. bool isRequired = false,
  10. Widget? prefixIcon,
  11. List<TextInputFormatter>? formatInputs,
})

Implementation

factory Control.textField({
  required String key,
  String? title,
  String? description,
  Widget? content,
  void Function(dynamic)? onChange,
  String? defaultValue,
  TextInputType? keyboardType,
  FormFieldValidator<String>? validator,
  bool isRequired = false,
  Widget? prefixIcon,
  List<TextInputFormatter>? formatInputs,
}) =>
    Control(
      description: description,
      title: title ?? '',
      type: ControlType.textField,
      key: key,
      content: content,
      onChange: onChange,
      value: defaultValue,
      keyboardType: keyboardType,
      validator: validator,
      isRequired: isRequired,
      prefixIcon: prefixIcon,
      formatInputs: formatInputs,
    );