mirror of
https://github.com/flutter/flutter.git
synced 2026-02-04 01:56:32 +08:00
Adds support for discrete scroll events, such as those sent by a scroll wheel. Includes the plumbing to convert, dispatch, and handle these events, as well as Scrollable support for consuming them.
34 lines
1.2 KiB
Dart
34 lines
1.2 KiB
Dart
// 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.
|
|
|
|
/// The Flutter gesture recognizers.
|
|
///
|
|
/// To use, import `package:flutter/gestures.dart`.
|
|
library gestures;
|
|
|
|
export 'src/gestures/arena.dart';
|
|
export 'src/gestures/binding.dart';
|
|
export 'src/gestures/constants.dart';
|
|
export 'src/gestures/converter.dart';
|
|
export 'src/gestures/debug.dart';
|
|
export 'src/gestures/drag.dart';
|
|
export 'src/gestures/drag_details.dart';
|
|
export 'src/gestures/eager.dart';
|
|
export 'src/gestures/events.dart';
|
|
export 'src/gestures/force_press.dart';
|
|
export 'src/gestures/hit_test.dart';
|
|
export 'src/gestures/long_press.dart';
|
|
export 'src/gestures/lsq_solver.dart';
|
|
export 'src/gestures/monodrag.dart';
|
|
export 'src/gestures/mouse_tracking.dart';
|
|
export 'src/gestures/multidrag.dart';
|
|
export 'src/gestures/multitap.dart';
|
|
export 'src/gestures/pointer_router.dart';
|
|
export 'src/gestures/pointer_signal_resolver.dart';
|
|
export 'src/gestures/recognizer.dart';
|
|
export 'src/gestures/scale.dart';
|
|
export 'src/gestures/tap.dart';
|
|
export 'src/gestures/team.dart';
|
|
export 'src/gestures/velocity_tracker.dart';
|