代码

const timeout = Duration(seconds: 3);
var t=Timer.periodic(timeout, (timer) {
print('afterTimer='+DateTime.now().toString()););
// timer.cancel(); // 取消定时器
});
t.cancel(); // 取消定时器

组件销毁的时候取消定时器

void dispose() {
super.dispose();
t.cancel();
}

 

posted on 2024-01-04 23:27  鲤斌  阅读(292)  评论(0编辑  收藏  举报