1// Copyright 2014 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5/// The Flutter gesture recognizers.
6///
7/// To use, import `package:flutter/gestures.dart`.
8library gestures;
9
10export 'src/gestures/arena.dart';
11export 'src/gestures/binding.dart';
12export 'src/gestures/constants.dart';
13export 'src/gestures/converter.dart';
14export 'src/gestures/debug.dart';
15export 'src/gestures/drag.dart';
16export 'src/gestures/drag_details.dart';
17export 'src/gestures/eager.dart';
18export 'src/gestures/events.dart';
19export 'src/gestures/force_press.dart';
20export 'src/gestures/gesture_settings.dart';
21export 'src/gestures/hit_test.dart';
22export 'src/gestures/long_press.dart';
23export 'src/gestures/lsq_solver.dart';
24export 'src/gestures/monodrag.dart';
25export 'src/gestures/multidrag.dart';
26export 'src/gestures/multitap.dart';
27export 'src/gestures/pointer_router.dart';
28export 'src/gestures/pointer_signal_resolver.dart';
29export 'src/gestures/recognizer.dart';
30export 'src/gestures/resampler.dart';
31export 'src/gestures/scale.dart';
32export 'src/gestures/tap.dart';
33export 'src/gestures/tap_and_drag.dart';
34export 'src/gestures/team.dart';
35export 'src/gestures/velocity_tracker.dart';
36