childBuild method
Implementation
@override
Widget childBuild() {
return Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
super.childBuild(),
const SizedBox(height: 5),
AFieldPassword(
key: confirmedField,
identifier: '${widget.identifier}_confirmation',
label: "Confirmação da Senha",
customRules: <ARule<String>>[
_checkEqualPasswords,
],
onSetShowPassword: setShowPassword,
minLength: widget.minLength,
onSubmit: widget.onSubmit,
autofillHints: widget.autofillHints,
padding: widget.padding,
clearable: widget.clearable,
height: widget.height,
linkToAForm: widget.linkToAForm,
),
],
);
}