Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
キャプチャ モードを使用して KeyUp イベントをリッスンする方法を見つけるために、Dart API を調べています。しかし、この新しいストリーム システムでは、キャプチャを指定するパラメーターがなくなりました。
document.body.onKeyUp.listen(callback); // where's the old "useCapture" parameter?
Streams で同じことを実現するための例を次に示します。
Element.keyUpEvent.forTarget(document.body, useCapture: true).listen((e) { // Do your stuff. print('Here we go'); });
上記で使用した方法は、キャプチャ モードでストリームを作成します。Stream インターフェイス (listen()メソッド) は非常に汎用的であるため、探しているこの特定の機能を持つことはできません。
listen()