动画计数器小部件 Flutter
如何使用
在您的项目中添加 custom_animated_counter_widget.dart
使用 AnimatedDigit 替代 Text
AnimatedDigit(
//Custom Key
key: const Key("key"),
// Digit you want to animate
digit: _counter.toDouble(),
//TextStyle of your View
textStyle:
const TextStyle(
fontSize: 30,
color: Colors.teal)
);
