validators icon indicating copy to clipboard operation
validators copied to clipboard

validate variables and forms with pre built functions qValidator function

Results 3 validators issues
Sort by recently updated
recently updated
newest added

like this, ```dart ComputedValidationRule("Password is not matching.", (text) { return pwdController.text ==pwdAgainController.text; }, ) ``` ```dart class ComputedValidationRule extends TextValidationRule { bool Function(String text) computed; ComputedValidationRule(String? error, this.computed) : super(error);...

- pick one - open issue - start working on it # Ideas - [x] is url - [x] #27 - [x] #30 - [x] youtube - [ ] linkedin...

enhancement