CJTextFieldContainer constructor

CJTextFieldContainer({
  1. Key? key,
  2. double? height = 44,
  3. Color? backgroundColor,
  4. Widget? prefixWidget,
  5. Widget? suffixWidget,
  6. required Widget textFieldWidget,
  7. double? cornerRadius = 0,
  8. double? borderWidth = 0,
  9. Color? borderColor,
})

Implementation

CJTextFieldContainer({
  Key? key,
  this.height = 44,
  this.backgroundColor,
  this.prefixWidget,
  this.suffixWidget,
  required this.textFieldWidget,
  this.cornerRadius = 0,
  this.borderWidth = 0,
  this.borderColor,
}) : super(key: key);