ReactiveSignature<T> constructor

ReactiveSignature<T>({
  1. Key? key,
  2. String? formControlName,
  3. FormControl<T>? formControl,
  4. Map<String, ValidationMessageFunction>? validationMessages,
  5. ControlValueAccessor<T, Uint8List>? valueAccessor,
  6. ShowErrorsFunction<T>? showErrors,
  7. InputDecoration? decoration,
  8. SignatureController? controller,
  9. SignatureBuilder? signatureBuilder,
  10. Color backgroundColor = Colors.grey,
  11. double? width,
  12. double? height,
  13. Color penColor = Colors.black,
  14. Color exportBackgroundColor = Colors.blue,
  15. double penStrokeWidth = 3.0,
  16. List<Point>? points,
  17. VoidCallback? onDrawStart,
  18. VoidCallback? onDrawMove,
  19. VoidCallback? onDrawEnd,
})

Creates a ReactiveSignature that contains a Signature.

Can optionally provide a formControl to bind this widget to a control.

Can optionally provide a formControlName to bind this ReactiveFormField to a FormControl.

Must provide one of the arguments formControl or a formControlName, but not both at the same time.

Can optionally provide a validationMessages argument to customize a message for different kinds of validation errors.

Can optionally provide a valueAccessor to set a custom value accessors. See ControlValueAccessor.

Can optionally provide a showErrors function to customize when to show validation messages. Reactive Widgets make validation messages visible when the control is INVALID and TOUCHED, this behavior can be customized in the showErrors function.

Example:

Binds a text field.

final form = fb.group({'email': Validators.required});

ReactiveSignature(
  formControlName: 'email',
),

Binds a text field directly with a FormControl.

final form = fb.group({'email': Validators.required});

ReactiveSignature(
  formControl: form.control('email'),
),

Customize validation messages

ReactiveSignature(
  formControlName: 'email',
  validationMessages: {
    ValidationMessage.required: 'The email must not be empty',
    ValidationMessage.email: 'The email must be a valid email',
  }
),

Customize when to show up validation messages.

ReactiveSignature(
  formControlName: 'email',
  showErrors: (control) => control.invalid && control.touched && control.dirty,
),

For documentation about the various parameters, see the Signature class and Signature, the constructor.

Implementation

ReactiveSignature({
  super.key,
  super.formControlName,
  super.formControl,
  super.validationMessages,
  super.valueAccessor,
  super.showErrors,

  ////////////////////////////////////////////////////////////////////////////
  InputDecoration? decoration,
  SignatureController? controller,
  SignatureBuilder? signatureBuilder,
  Color backgroundColor = Colors.grey,
  double? width,
  double? height,
  this.penColor = Colors.black,
  this.exportBackgroundColor = Colors.blue,
  this.penStrokeWidth = 3.0,
  this.points,
  this.onDrawStart,
  this.onDrawMove,
  this.onDrawEnd,
}) : super(
        builder: (field) {
          final state = field as _ReactiveSignatureState;
          final InputDecoration effectiveDecoration = (decoration ??
                  const InputDecoration())
              .applyDefaults(Theme.of(state.context).inputDecorationTheme);

          final child = Signature(
            controller: state._signatureController,
            width: width,
            height: height,
            backgroundColor: backgroundColor,
          );

          return InputDecorator(
            decoration: effectiveDecoration.copyWith(
              errorText: field.errorText,
              enabled: field.control.enabled,
            ),
            child: signatureBuilder?.call(
                    field.context, child, state._signatureController) ??
                Row(
                  children: [
                    Expanded(child: child),
                    IconButton(
                      icon: const Icon(Icons.clear),
                      onPressed: () => state._signatureController.clear(),
                    )
                  ],
                ),
          );
        },
      );