We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 729f17e commit fcb07ebCopy full SHA for fcb07eb
README.md
@@ -302,6 +302,7 @@ struct RegistrationView: View {
302
| `RegexValidationRule` | Pattern matching validation | `RegexValidationRule(pattern: "^\\d{3}-\\d{4}$", error: "Invalid phone format")` |
303
| `URLValidationRule` | Validates URL format | `URLValidationRule(error: "Please enter a valid URL")` |
304
| `CreditCardValidationRule` | Validates credit card numbers (Luhn algorithm) | `CreditCardValidationRule(error: "Invalid card number")` |
305
+| `EmailValidationRule` | Validates email format | `EmailValidationRule(error: "Please enter a valid email")` |
306
307
## Custom Validators
308
0 commit comments