TextFieldDense constructor

TextFieldDense({
  1. @required String? label,
  2. @required bool? enabled,
  3. @required bool? readOnly,
  4. ValueChanged<String>? onChanged,
  5. List<TextInputFormatter>? inputFormatters,
  6. String? initialValue,
  7. int? maxlength,
  8. TextInputType? keyboardType,
  9. int? maxLines = 1,
  10. AutovalidateMode? autovalidateMode,
  11. String? validator(
    1. String?
    )?,
  12. bool enableSuggestions = false,
  13. TextEditingController? textCtrl,
})

Implementation

TextFieldDense(
    {@required this.label,
    @required this.enabled,
    @required this.readOnly,
    this.onChanged,
    this.inputFormatters,
    this.initialValue,
    this.maxlength,
    this.keyboardType,
    this.maxLines = 1,
    this.autovalidateMode,
    this.validator,
    this.enableSuggestions = false,
    this.textCtrl});