RehaculTextField constructor

const RehaculTextField(
  1. {Key? key,
  2. bool isDecimal = false,
  3. String? hintText,
  4. String? labelText,
  5. String? errorText,
  6. String? initialValue,
  7. String? suffixText,
  8. Icon? suffixIcon,
  9. TextEditingController? controller,
  10. List<TextInputFormatter>? inputFormatters,
  11. ValueChanged<String>? onChanged,
  12. FormFieldValidator<String>? validator}
)

Implementation

const RehaculTextField({
  super.key,
  this.isDecimal = false,
  this.hintText,
  this.labelText,
  this.errorText,
  this.initialValue,
  this.suffixText,
  this.suffixIcon,
  this.controller,
  this.inputFormatters,
  this.onChanged,
  this.validator,
});