You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`FormBuilderValidators.alphabetical()` - requires the field's to contain only alphabetical characters.
167
-
-`FormBuilderValidators.contains()` - requires the substring to be in the field's value.
168
-
-`FormBuilderValidators.endsWith()` - requires the substring to be the end of the field's value.
169
-
-`FormBuilderValidators.lowercase()` - requires the field's value to be lowercase.
170
-
-`FormBuilderValidators.matchNot()` - requires the field's value to not match the provided regex pattern.
171
-
-`FormBuilderValidators.match()` - requires the field's value to match the provided regex pattern.
172
-
-`FormBuilderValidators.maxWordsCount()` - requires the word count of the field's value to be less than or equal to the provided maximum count.
173
-
-`FormBuilderValidators.minWordsCount()` - requires the word count of the field's value to be greater than or equal to the provided minimum count.
174
-
-`FormBuilderValidators.singleLine()` - requires the field's string to be a single line of text.
175
-
-`FormBuilderValidators.startsWith()` - requires the substring to be the start of the field's value.
176
-
-`FormBuilderValidators.uppercase()` - requires the field's value to be uppercase.
162
+
-`Validators.contains(substring)` - Checks if the field contains the `substring`.
163
+
- TODO `FormBuilderValidators.endsWith()` - requires the substring to be the end of the field's value.
164
+
- TODO `FormBuilderValidators.startsWith()` - requires the substring to be the start of the field's value.
165
+
- TODO `FormBuilderValidators.lowercase()` - requires the field's value to be lowercase.
166
+
- TODO `FormBuilderValidators.uppercase()` - requires the field's value to be uppercase.
167
+
-`Validators.hasMinUppercaseChars(min:min)` - Checks if the field has a minimum number of uppercase chars.
168
+
-`Validators.hasMinLowercaseChars(min:min)` - Checks if the field has a minimum number of lowercase chars.
169
+
-`Validators.hasMinNumericChars(min:min)` - Checks if the field has a minimum number of numeric chars.
170
+
-`Validators.hasMinSpecialChars(min:min)` - Checks if the field has a minimum number of special chars.
171
+
-`Validators.match(regExp)` - Checks if the field matches with the regular expression `regExp`.
172
+
- TODO `FormBuilderValidators.matchNot()` - requires the field's value to not match the provided regex pattern.
173
+
-`Validators.uuid()` - Checks if the field is a valid Universally Unique Identifier (UUID).
174
+
- TODO `FormBuilderValidators.alphabetical()` - requires the field's to contain only alphabetical characters.
175
+
- TODO `FormBuilderValidators.maxWordsCount()` - requires the word count of the field's value to be less than or equal to the provided maximum count.
176
+
- TODO `FormBuilderValidators.minWordsCount()` - requires the word count of the field's value to be greater than or equal to the provided minimum count.
177
+
- TODO `FormBuilderValidators.singleLine()` - requires the field's string to be a single line of text.
177
178
178
179
### Use-case validators
179
180
@@ -484,35 +485,3 @@ Take a look at [our fantastic ecosystem](https://github.com/flutter-form-builder
0 commit comments