gpt4 book ai didi

flutter - 如何在 Flutter 上使用 TimerTask?

转载 作者:行者123 更新时间:2023-12-01 21:46:44 25 4
gpt4 key购买 nike

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

在java中有

TimerTask

但在 flutter 中它是什么?

最佳答案

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
});

关于flutter - 如何在 Flutter 上使用 TimerTask?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60349605/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com