如何在Dart中使用animationFrame?

时间:2013-03-18 05:28:45

标签: dart dart-html

以下代码抛出异常"type '([int]) => void' is not a subtype of type 'RequestAnimationFrameCallback' of 'callback'."

import 'dart:html';

void main() {
  window.animationFrame.then((time) => print("test"));
}

如果我将window.animationFrame.then更改为window.requestAnimationFrame,一切都会按预期进行。我误解了Dart期货的运作方式吗?

1 个答案:

答案 0 :(得分:1)

用法看起来正确。

您运行的旧版本尚未实现文档中指定的行为,或者它只是一个错误。我会继续在http://dartbug.com/new

上提出问题