build method

  1. @override
Widget build(
  1. BuildContext context,
  2. Function onValueChanged
)
override

Builds the widget representing the field.

context The build context.

onValueChanged A function to be called when the value of the field changes.

Implementation

@override
Widget build(BuildContext context, Function onValueChanged) {
  return FlutterFormInputBool(
    widgetType: widgetType,
    onChanged: (v) {
      value = v;
      onChange?.call(value);
      onValueChanged();
    },
    validator: (value) {
      for (var validator in validators) {
        var output = validator(value);
        if (output != null) {
          return output;
        }
      }
      return null;
    },
    leftWidget: leftWidget,
    rightWidget: rightWidget,
  );
}