CHFOutlineBorderField constructor

const CHFOutlineBorderField({
  1. Key? key,
  2. required TextEditingController controller,
  3. double? height,
  4. String? title,
  5. double? titleSize,
  6. String? hintText,
  7. String type = 'text',
  8. bool clearable = false,
  9. bool showEyes = false,
  10. bool required = false,
  11. bool enable = true,
  12. double? titleSpace,
  13. Widget? prefixWidget,
  14. Widget? suffixWidget,
  15. double? contentPaddingHorizontal,
  16. TextInputType? keyboardType,
  17. List<TextInputFormatter>? inputFormatters,
  18. ValueChanged<String>? onChanged,
  19. VoidCallback? onClearable,
  20. bool readonly = false,
  21. GestureTapCallback? onTap,
})

Implementation

const CHFOutlineBorderField({
  Key? key,
  required this.controller,
  this.height,
  this.title,
  this.titleSize,
  this.hintText,
  this.type = 'text',
  this.clearable = false,
  this.showEyes = false,
  this.required = false,
  this.enable = true,
  this.titleSpace,
  this.prefixWidget,
  this.suffixWidget,
  this.contentPaddingHorizontal,
  this.keyboardType,
  this.inputFormatters,
  this.onChanged,
  this.onClearable,
  this.readonly = false, this.onTap,
}) : super(key: key);