fluent_ui
fluent_ui copied to clipboard
TextFormBox Validator is dont work🐛
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

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