如何在Flutter上使用TimerTask?

问题描述 投票:0回答:1

我想创建一个每x秒运行一次的函数..

在Java中有

TimerTask

但是扑朔迷离是什么?

flutter timertask
1个回答
0
投票
import 'dart:async'; // import this 

并且使用名为构造函数的Timerperiodic

Timer.periodic(Duration(seconds: 1), (timer) {
  // this block runs every second
  // and when you want to stop it, simply call `timer.cancel();` here
});
© www.soinside.com 2019 - 2024. All rights reserved.