RothkoTextfield constructor

RothkoTextfield({
  1. IconData? suffixIcon,
  2. @required bool? readOnly,
  3. bool? enabled,
  4. String? helperHint,
  5. ValueChanged<String>? onChanged,
  6. List<TextInputFormatter>? inputFormatters,
  7. int? maxlength,
  8. TextInputType? keyboardType,
  9. String? validator(
    1. String?
    )?,
  10. bool enableSuggestions = false,
  11. String? initialValue,
  12. int? maxlines,
  13. TextEditingController? textCtrl,
  14. VoidCallback? toolTipAction,
  15. String? hintText,
  16. TextStyle? hintStyle,
  17. Widget? labelWidget,
  18. String? toolTipText,
  19. required String labelText,
  20. bool showSuffixIcon = false,
  21. double height = 80,
  22. double radius = 8,
})

Implementation

RothkoTextfield({
  this.suffixIcon,
  @required this.readOnly,
  this.enabled,
  this.helperHint,
  this.onChanged,
  this.inputFormatters,
  this.maxlength,
  this.keyboardType,
  this.validator,
  this.enableSuggestions = false,
  this.initialValue,
  this.maxlines,
  this.textCtrl,
  this.toolTipAction,
  this.hintText,
  this.hintStyle,
  this.labelWidget,
  this.toolTipText,
  required this.labelText,
  this.showSuffixIcon = false,
  this.height = 80,
  this.radius = 8,
});