mutable method
Widget
mutable(
- ValueChanged<
String> onChanged, { - String? placeholder,
- int? minLines,
- bool border = false,
- bool autoCorrect = true,
- EditButtonType buttonType = EditButtonType.pencil,
Implementation
Widget mutable(ValueChanged<String> onChanged,
{String? placeholder,
int? minLines,
bool border = false,
bool autoCorrect = true,
EditButtonType buttonType = EditButtonType.pencil}) =>
MutableText(data ?? "",
placeholder: placeholder,
minLines: minLines,
maxLines: maxLines,
autoCorrect: autoCorrect,
buttonType: buttonType,
textAlign: textAlign,
style: style,
textWidthBasis: textWidthBasis,
textScaler: textScaler,
textHeightBehavior: textHeightBehavior,
textDirection: textDirection,
strutStyle: strutStyle,
softWrap: softWrap,
key: key,
semanticsLabel: semanticsLabel,
overflow: overflow,
selectionColor: selectionColor,
locale: locale,
border: border,
onChanged: onChanged);