v2.2.2
timer_count_down
简单的倒计时计时器。用于创建一个简单计时器。纯代码实现。
200喜欢 2万近 30 天下载150Pub 分数
AndroidiOSWebmacOSWindowsLinux
Flutter 的简单倒计时(计时器)
{"sdk":"flutter"}^1.3.0^1.9.0以下为英文项目原文快照,最新内容请访问 GitHub。
pub https://badges.fyi/github/latest-tag/DizoftTeam/simple_count_down https://badges.fyi/github/stars/DizoftTeam/simple_count_down https://badges.fyi/github/license/DizoftTeam/simple_count_down
A highly customizable countdown widget for Flutter, with support for custom styling, intervals, and onFinished callbacks.
dependencies:
flutter:
sdk: flutter
timer_count_down: ^2.2.2
Run this in your terminal or click on pub get
$ flutter pub get
Simple example for the usage of the package is shown below.
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Countdown(
seconds: 20,
build: (BuildContext context, double time) => Text(time.toString()),
interval: Duration(milliseconds: 100),
onFinished: () {
print('Timer is done!');
},
);
}
}
For pause, restart and resume you need to use CountdownController.
For an example of using the package, please check the example folder. Otherwise, keep reading and keep going!