Aniketkhote / refreshed

Enhanced GetX for Flutter: Stability, Performance, Beginner-Friendly.
https://pub.dev/packages/refreshed
Other
67 stars 7 forks source link

get_utils should be keep alive #36

Open phatkv opened 3 months ago

phatkv commented 3 months ago

Some useful expression like: isLengthLessThan, isLengthGreaterThan, isEmail, isPhone, etc loss in current version. I think it should be keep alive and update soon! Thank you!

victorlunam commented 3 months ago

Some useful expression like: isLengthLessThan, isLengthGreaterThan, isEmail, isPhone, etc loss in current version. I think it should be keep alive and update soon! Thank you!

These helpers were removed from the package with a view to replacing it with an additional package (Quickly) that handles all of this in a better way.

https://github.com/Aniketkhote/refreshed/blob/1d038a52b8197199b809ed3c4527947079ed8bca/CHANGELOG.md?plain=1#L100-L103

some examples of replacements could be

isLengthLessThan -> minLen
isEmail -> isEmail
isPhone -> unimplemented

@Aniketkhote it might be good to implement the most used helpers to facilitate the migration to refreshed

aniketkhote9 commented 1 month ago

Updated to the latest version of Quickly with additional string extensions. Let me know if there's anything specific you'd like to see added!