TextAreaProps constructor
const
TextAreaProps({
- String? placeholder,
- int rows = 4,
- int? cols,
- bool disabled = false,
- bool required = false,
- bool readOnly = false,
- TextAreaResize resize = TextAreaResize.vertical,
- String? minWidth,
- String? maxWidth,
- String? minHeight,
- String? maxHeight,
- String? value,
- String? name,
- String? id,
- String? label,
- String? error,
- String? helperText,
- void onChanged()?,
- bool fullWidth = true,
- ArcaneStyleData? styles,
- ArcaneDecoration? decoration,
Implementation
const TextAreaProps({
this.placeholder,
this.rows = 4,
this.cols,
this.disabled = false,
this.required = false,
this.readOnly = false,
this.resize = TextAreaResize.vertical,
this.minWidth,
this.maxWidth,
this.minHeight,
this.maxHeight,
this.value,
this.name,
this.id,
this.label,
this.error,
this.helperText,
this.onChanged,
this.fullWidth = true,
this.styles,
this.decoration,
});