mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This CL plumbs wheel events through Sky again and uses them in sky-scrollable. R=ojan@chromium.org Review URL: https://codereview.chromium.org/876853005
13 lines
498 B
Plaintext
13 lines
498 B
Plaintext
// Copyright 2015 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
[
|
|
EventConstructor,
|
|
] interface WheelEvent : Event {
|
|
[InitializedByEventConstructor] readonly attribute double x;
|
|
[InitializedByEventConstructor] readonly attribute double y;
|
|
[InitializedByEventConstructor] readonly attribute double offsetX;
|
|
[InitializedByEventConstructor] readonly attribute double offsetY;
|
|
};
|