animated_digit
a scrolling digital animation widget that can be used to display the amount of animation, the number of people online in real-time, any number that requires animation effects is simple and easy to use, and it can also guarantee the accuracy of the amount of calculation.
usage
animateddigitcontroller _controller = animateddigitcontroller(520);
animateddigitwidget(
controller: _controller,
textstyle: textstyle(color: color(0xff009668)),
fractiondigits: 2,
enabledigitsplit: true,
)
// 累加一个数字 | increment
_controller.addvalue(1314);
// 重置一个数字 | reset
_controller.resetvalue(1314);
api
addvalue
animateddigitcontroller _controller = animateddigitcontroller(520);
_controller.addvalue(1314); // 1834
resetvalue
animateddigitcontroller _controller = animateddigitcontroller(520);
_controller.resetvalue(1314); // 1314
Comments are closed.