smooth_counter 1.1.0
smooth_counter: ^1.1.0 copied to clipboard
A Flutter package that is a smooth running counter widget.
1.1.0 #
1.0.0 #
Breaking Changes #
-
BREAKING: Removed
hasSeparatorparameter. UseformatorformatStringparameters instead for more flexible number formatting control.Migration guide:
// Before SmoothCounter(count: 1234, hasSeparator: false) // After SmoothCounter(count: 1234, formatString: '0')
Features #
- feat: Added
formatparameter to acceptNumberFormatinstances for custom number formatting - feat: Added
formatStringparameter to specify number format patterns (e.g.,'#,##0.00','0') - feat: Support both
intanddoubletypes for thecountparameter
Improvements #
- refactor: Replaced internal
Formatterclass with directNumberFormatintegration fromintlpackage - refactor: Removed unnecessary library declaration
Documentation #
- docs: Updated README with comprehensive number formatting examples
- docs: Added documentation for
formatparameter inSmoothCounterandSmoothCounterRow - docs: Updated requirements to Dart 3.8.0+ and Flutter 3.32.0+
- docs: Added prefix/suffix feature documentation
- docs: Changed examples to use
doubletype to demonstrate decimal support
0.3.0 #
Dependencies #
- deps: Updated Dart SDK constraint to
^3.8.0 - deps: Updated Flutter SDK minimum version to
>=3.32.0 - deps: Updated
intlpackage from^0.19.0to^0.20.0 - deps: Updated
flutter_lintsfrom^2.0.2to^6.0.0
Infrastructure #
- ci: Updated iOS deployment target from 11.0 to 12.0
- ci: Updated Xcode project settings to Xcode 15.1.0
- ci: Updated Swift's
@UIApplicationMainto@mainannotation - ci: Added
.build/and.swiftpm/to.gitignorefor Swift Package Manager support - ci: Added custom LLDB init file configuration for better debugging support
- ci: Enabled GPU validation mode in debug scheme
0.2.0 #
- CHORE: Upgrade intl package to 0.19.0.
0.0.1+1 #
- CHORE: Fix README images.
0.0.1 #
- Initial release.