countup 0.1.4 countup: ^0.1.4 copied to clipboard
An flutter plugin that will help you to build animated counter texts.
Flutter Countup #
A Flutter package that helps you create animated Text widgets for Android and IOS. Based by https://gitlab.com/kmcgill88/mccounting_text
Simple Usage #
You should give a begin, end and a duration value to Countup widget. If you want you can also give separator and style value.
Countup(
begin: 0,
end: 7500,
duration: Duration(seconds: 3),
separator: ',',
style: TextStyle(
fontSize: 36,
),
)