CustomInputWithoutIcon constructor

const CustomInputWithoutIcon({
  1. Key? key,
  2. TextEditingController? controller,
  3. String? hint,
  4. String? label,
  5. bool? filled,
  6. Color? fillColor,
  7. FocusNode? focusNode,
  8. Color? borderColor = null,
  9. dynamic onChanged(
    1. String
    )?,
  10. FormFieldValidator<String>? validator,
})

Implementation

const CustomInputWithoutIcon({
  super.key,
  super.controller,
  String? hint,
  String? label,
  bool? filled,
  Color? fillColor,
  super.focusNode,
  super.borderColor = null,
  super.onChanged,
  super.validator,
}) : super(
  hintText: hint,
  labelText: label,
  filled: filled,
  fillColor: fillColor,
);