最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Handle events in DART - Stack Overflow

programmeradmin1浏览0评论

I am new to DART. I read the language overview and checked example code in DART editor. So far I could not find how to handle events in DART. For e.g. onclick="call_dart_method()".

How can we handle events in DART?

I am new to DART. I read the language overview and checked example code in DART editor. So far I could not find how to handle events in DART. For e.g. onclick="call_dart_method()".

How can we handle events in DART?

Share Improve this question edited Jan 26, 2022 at 9:23 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Apr 17, 2012 at 18:36 18bytes18bytes 6,0397 gold badges46 silver badges69 bronze badges 1
  • dartlang/articles/improving-the-dom scroll down to events. – jonathanKingston Commented Apr 17, 2012 at 18:39
Add a ment  | 

2 Answers 2

Reset to default 5

That's not how you do it on Dart Check here, under the section Events: http://www.dartlang/articles/improving-the-dom/

elem.onClick.listen(
    (event) => print('click!'));

Also, you might find that being able to optionally declare our variable types makes working with events in Dart bliss.

import 'dart:html';
import 'dart:math';

class MyApplication {
  MyApplication() {
    CanvasElement screenCanvas;
    CanvasRenderingContext2D screen;
    final int WIDTH = 400, HEIGHT = 300;

    Random rand = new Random();
    screenCanvas = new CanvasElement();
    screenCanvas
      ..width = WIDTH
      ..height = HEIGHT
      ..style.border = 'solid black 1px';

    screen = screenCanvas.getContext('2d');
    document.body.nodes.add(screenCanvas);
    screenCanvas.onClick.listen((MouseEvent me) {
      int
          r = rand.nextInt(256),
          g = rand.nextInt(256),
          b = rand.nextInt(256);
      double a = rand.nextDouble();
      screen
        ..save()
        ..translate(me.offsetX, me.offsetY)
        ..rotate(rand.nextDouble() * PI)
        ..fillStyle = 'rgba($r,$g,$b,$a)'
        ..fillRect(-25, -25, 50, 50)
        ..restore();
    });
  }
}

void main() {
  new MyApplication();
}
发布评论

评论列表(0)

  1. 暂无评论