dart_extensions 2.2.4 
dart_extensions: ^2.2.4 copied to clipboard
Set of method-extensions for dart that makes using framework in a much easier and clean way also adds additional functionality.
2.2.4 17/05/23 #
- Sliver extensions
 
2.2.1 17/05/23 #
- Flutter 3.1 ready
 
2.0.5 11/03/21 #
delayextension for delay, example: await 3.seconds.delay(() { some code }added getTextSize- A good use-case will be drawing a divider with the exect width of the text above it.isVideo- Checks if string is an video file.isAudio- Checks if string is an audio file.isImage- Checks if string is an image file.isNumericOnly- Check if the string has any number in it.isAlphabetOnly- Checks if string consist only Alphabet. (No Whitespace)hasCapitalletter- Checks if string contains at least one Capital Letter.isHTML- Checks if string is an html file.isEmail- Checks if string is email..isPhoneNumber- Checks if string is phone number, good for login checks.isUsername- Checks if string is a valid username, good for login checks.isCurrency- Checks if string is Currency.isPalindrom- Checks if string is Palindrom. (good to know for interviews as well)
2.0.0 11/03/21 #
Support flutter 2Support null safetyadd new extensions
1.0.0 19/03/20 #
Context extensionsText ExtensionsIcon ExtensionsList<Widget> Extensions
0.3.4 9/03/20 #
- sortBy - Sorts elements in the array in-place according to natural sort order of the value returned by specified selector function.
 
0.3.3 19/02/20 #
- algorithm - quick search
 - Flutter - Tooltip extension
 
0.2.0 23/01/20. #
- .groupBy() added Iterable + tests
 - .intersect() + test
 - .toMutableSet() + test
 
0.1.8 22/01/20. #
- .filter() added Iterable + tests
 - .notFilter() added Iterable + tests
 - .isNullOrWhiteSpace added String + tests
 - .insert() added Strings + test
 
0.1.7 19/01/202. #
- find - Iterable extensions + tests
 - added Ranges extension for int + tests
 
0.1.4 19/01/202. #
- associate in Iterables extensions + tests
 - added Http Extensions: - httpGet httpPost httpPut httpDelete
 - added int Extensions: - absolute - isEven - isOdd - isPositive - isNegative - tenth - fourth - third - half - doubled - tripled - quadrupled - squared
 
0.1.3 19/01/2020. #
- anyChar in Strings extensions + tests
 - replaceBefore Strings extensions + tests
 - toDoubleOrNull Strings extensions test
 - removeAllWhiteSpace Strings extensions + tests
 - toCharArray Strings extension + tests