EasyValidation
EasyValidation copied to clipboard
:heavy_check_mark: A text and input validation library in Kotlin for Android
The error message should be as follows: minLength(6) message is "Length should be greater than $minLength" but should be "Length should be greater than or equal to $minLength"
Add the Toast validations for Collection extensions and Fixed typos and simplify my code.
The email validation doesn't allow a plus sign "+" before the @. Plus signs are often used for account aliases, for example, [email protected] and [email protected], [email protected] and [email protected] would address/send...
Similar to issue #18, add methods in the collection_ktx package.
Create a demo app for usage of **EasyValidation**
Bug/40
Fixed validation of the local part of the email to allow more accepted characters as well as preventing invalid combinations (like two periods sequentially). Also increased the length limit of...
Addressed issue #38
The email validation allows for a maximum TLD length of 4 characters. [RFC 1043](https://www.ietf.org/rfc/rfc1034.txt) allows 63 octets for top level domains. We experienced this limitation when trying to use .cloud...
I'm unable to retrieve `.validator()` from a TextInputLayout view. 👀 through your source code, I couldn't find the appropriate methods for it either. The nonEmptyList method doesn't support the same...