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 Padding(
    padding: padding,
    child: FlutterFormInputPassword(
      style: textStyle,
      iconSize: iconSize ?? 24.0,
      decoration: textFieldDecoration,
      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;
      },
    ),
  );
}