flutter-animated-counter
flutter-animated-counter copied to clipboard
An implicit animation widget that flips from one number to another.
I got this error with 0.3.2: Error: Member not found: 'MediaQuery.textScalerOf' Compiled OK with 0.3.0
for example in arabic locale the app in RTL the number is 123 it will display like 321 i had to wrap the widget in Directionality to force ltr direction
A very simple change that adds a much needed feature. Recreated PR to change head repo. Right now, when animating from 35.27 to 35, hardcoding fraction digits to 2 displays...
Thanks for your package, I really like it so far. One thing that is missing for my usecase is the ability to specify a textOverflow for the suffix (e.g. ellipsis)....
`TextSpan( text: '1234', style: TextStyle( fontFamily: 'Rubik', fontSize: 20, fontVariations: [ FontVariation('ital', 0), FontVariation('wght', 500), FontVariation('ital', 1), FontVariation('wght', 500) ], ))` `WidgetSpan( child: AnimatedFlipCounter( value: 1234, textStyle: TextStyle( fontFamily: 'Rubik',...
Add ablity to apply textOverflow to suffix