toTextFieldPendantBuilder method
TextFieldPendant
toTextFieldPendantBuilder({
- DecoratorPendantPosition positioned = DecoratorPendantPosition.outer,
- bool maintainSize = false,
- bool? needFocus,
- bool? needEditing,
- DecoratorPendantValueCallback<
TextEditingController?> ? needValue,
Implementation
TextFieldPendant toTextFieldPendantBuilder({
DecoratorPendantPosition positioned = DecoratorPendantPosition.outer,
bool maintainSize = false,
bool? needFocus,
bool? needEditing,
DecoratorPendantValueCallback<TextEditingController?>? needValue,
}) => TextFieldPendant.builder(
builder: (DecoratorBoxStatus<TextEditingController> status) => this,
maintainSize: maintainSize,
positioned: positioned,
needValue: needValue,
needEditing: needEditing,
needFocus: needFocus,
);