fluent_ui icon indicating copy to clipboard operation
fluent_ui copied to clipboard

TextFormBox Validator is dont work🐛

Open BardoGOD opened this issue 3 years ago • 1 comments

Describe the bug I am using the validator correctly but it does not work or show any error in the field used

To Reproduce return TextFormBox( controller: _controller, header: _txtlabel, validator: (text) { if (text == null || text.isEmpty) return 'obligatorio'; }); Screenshots image

BardoGOD avatar Aug 11 '22 17:08 BardoGOD

You must use a Form widget to valide or enable auto validation

bdlukaa avatar Aug 11 '22 20:08 bdlukaa