You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).
I've created a PR that adds this functionality. What are your thoughts on this?
The text was updated successfully, but these errors were encountered:
sabifa
pushed a commit
to sabifa/flutter-animated-counter
that referenced
this issue
Sep 26, 2024
Another possibility would be to change the type of suffix / prefix to Widget instead of String. This way I could pass my adapted overflowable text widget into the widget like so instead of adding the suffixOverflow param.
AnimatedFlipCounter(
duration:Duration(milliseconds:500),
value: _value,
suffix:Flexible(
child:Text(
'my long text that is currently overflowing',
overflow:TextOverflow.ellipsis,
),
)
)
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).
I've created a PR that adds this functionality. What are your thoughts on this?
The text was updated successfully, but these errors were encountered: