FFieldBuilder<T> typedef
FFieldBuilder<T> =
Widget Function(BuildContext context, T style, Set<WidgetState> states, Widget field)
A callback for decorating a field. It should always use the given field.
style is the field's style.
states is the current states of the widget.
field is the field that will be decorated.
See FTextField.builder.
Implementation
typedef FFieldBuilder<T> = Widget Function(BuildContext context, T style, Set<WidgetState> states, Widget field);