mirror of
https://github.com/hanskokx/arcane_helper_utils.git
synced 2026-05-14 02:19:09 +02:00
b066eace19
- Added `printValue()` method as an extension to `dynamic` Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
1.8 KiB
1.8 KiB
1.2.6
-
Added the
printValue()extension. TheprintValue()extension can be used to print a value to the console before returning that same value.Example:
// Print the `textTheme` object to the console before returning it Text( 'Hello, world', style: Theme.of(context).textTheme.printValue().headlineMedium, ),
1.2.5
- Null
Strings being manipulated should returnnullinstead of an emptyString
1.2.4
- Made
Stringmanipulation utilities available for nullable objects
1.2.3
- Adjusted
capitalizeextension to convert remaining letters to lowercase
1.2.2
- Added additional
Stringmanipulation utilities, including:capitalizeWords: Capitalizes the first letter of each word in the string.spacePascalCase: Adds spaces between words in a PascalCase string.
1.2.1
- Added additional documentation and examples for new extension.
1.2.0
- Added the
uniqueextension forListobjects.
1.1.3
- Removes
Colorextension due to an incompatibility with Flutter. Sorry, @rania-run!
1.1.2
- Ensure new
Colorextensions are exported from the package.
1.1.1
- Added
Colorextension for luminance. Thanks, @rania-run! - Fixed a bug in the
splitByLengthextension onString
1.1.0
- [BREAKING] Removed
Unfocuserwidget to ensure pure Dart compatibility.
To continue using Unfocuser, add unfocuser: ^1.0.0 to your pubspec.yaml.
1.0.4
- Added
yesterdayandtomorrowextensions toDateTime
1.0.3+2
- Added an example project
1.0.3+1
- Updated documentation
1.0.3
- Updated linting rules to use arcane_analysis
1.0.2
- Added bulletPoint to CommonString
1.0.1
- Added Unfocuser widget and JSON converters
1.0.0
- Initial release