@@ -75,7 +75,7 @@ typedef GestureVelocityTrackerBuilder = VelocityTracker Function(PointerEvent ev
75
75
/// * [HorizontalDragGestureRecognizer] , for left and right drags.
76
76
/// * [VerticalDragGestureRecognizer] , for up and down drags.
77
77
/// * [PanGestureRecognizer] , for drags that are not locked to a single axis.
78
- abstract class DragGestureRecognizer extends OneSequenceGestureRecognizer {
78
+ sealed class DragGestureRecognizer extends OneSequenceGestureRecognizer {
79
79
/// Initialize the object.
80
80
///
81
81
/// {@macro flutter.gestures.GestureRecognizer.supportedDevices}
@@ -287,7 +287,14 @@ abstract class DragGestureRecognizer extends OneSequenceGestureRecognizer {
287
287
_DragState _state = _DragState .ready;
288
288
late OffsetPair _initialPosition;
289
289
late OffsetPair _pendingDragOffset;
290
- late OffsetPair _finalPosition;
290
+
291
+ /// The local and global offsets of the last pointer event received.
292
+ ///
293
+ /// It is used to create the [DragEndDetails] , which provides information about
294
+ /// the end of a drag gesture.
295
+ OffsetPair get lastPosition => _lastPosition;
296
+ late OffsetPair _lastPosition;
297
+
291
298
Duration ? _lastPendingEventTimestamp;
292
299
293
300
/// When asserts are enabled, returns the last tracked pending event timestamp
@@ -316,6 +323,7 @@ abstract class DragGestureRecognizer extends OneSequenceGestureRecognizer {
316
323
///
317
324
/// If drag is only allowed along a defined axis, this value may be negative to
318
325
/// differentiate the direction of the drag.
326
+ double get globalDistanceMoved => _globalDistanceMoved;
319
327
late double _globalDistanceMoved;
320
328
321
329
/// Determines if a gesture is a fling or not based on velocity.
@@ -330,16 +338,36 @@ abstract class DragGestureRecognizer extends OneSequenceGestureRecognizer {
330
338
/// A fling calls its gesture end callback with a velocity, allowing the
331
339
/// provider of the callback to respond by carrying the gesture forward with
332
340
/// inertia, for example.
333
- DragEndDetails ? _considerFling (VelocityEstimate estimate, PointerDeviceKind kind);
341
+ DragEndDetails ? considerFling (VelocityEstimate estimate, PointerDeviceKind kind);
334
342
343
+ /// Returns the effective delta that should be considered for the incoming [delta] .
344
+ ///
345
+ /// The delta received by an event might contain both the x and y components
346
+ /// greater than zero, and an one-axis drag recognizer only cares about one
347
+ /// of them.
348
+ ///
349
+ /// For example, a [VerticalDragGestureRecognizer] , would return an [Offset]
350
+ /// with the x component set to 0.0, because it only cares about the y component.
335
351
Offset _getDeltaForDetails (Offset delta);
352
+
353
+ /// Returns the value for the primary axis from the given [value] .
354
+ ///
355
+ /// For example, a [VerticalDragGestureRecognizer] would return the y
356
+ /// component, while a [HorizontalDragGestureRecognizer] would return
357
+ /// the x component.
358
+ ///
359
+ /// Returns `null` if the recognizer does not have a primary axis.
336
360
double ? _getPrimaryValueFromOffset (Offset value);
337
361
338
362
/// The axis (horizontal or vertical) corresponding to the primary drag direction.
339
363
///
340
364
/// The [PanGestureRecognizer] returns null.
341
365
_DragDirection ? _getPrimaryDragAxis () => null ;
342
- bool _hasSufficientGlobalDistanceToAccept (PointerDeviceKind pointerDeviceKind, double ? deviceTouchSlop);
366
+
367
+ /// Whether the [globalDistanceMoved] is big enough to accept the gesture.
368
+ ///
369
+ /// If this method returns `true` , it means this recognizer should declare win in the gesture arena.
370
+ bool hasSufficientGlobalDistanceToAccept (PointerDeviceKind pointerDeviceKind, double ? deviceTouchSlop);
343
371
bool _hasDragThresholdBeenMet = false ;
344
372
345
373
final Map <int , VelocityTracker > _velocityTrackers = < int , VelocityTracker > {};
@@ -380,7 +408,7 @@ abstract class DragGestureRecognizer extends OneSequenceGestureRecognizer {
380
408
case _DragState .ready:
381
409
_state = _DragState .possible;
382
410
_initialPosition = OffsetPair (global: event.position, local: event.localPosition);
383
- _finalPosition = _initialPosition;
411
+ _lastPosition = _initialPosition;
384
412
_pendingDragOffset = OffsetPair .zero;
385
413
_globalDistanceMoved = 0.0 ;
386
414
_lastPendingEventTimestamp = event.timeStamp;
@@ -629,7 +657,7 @@ abstract class DragGestureRecognizer extends OneSequenceGestureRecognizer {
629
657
final Offset localDelta = (event is PointerMoveEvent ) ? event.localDelta : (event as PointerPanZoomUpdateEvent ).localPanDelta;
630
658
final Offset position = (event is PointerMoveEvent ) ? event.position : (event.position + (event as PointerPanZoomUpdateEvent ).pan);
631
659
final Offset localPosition = (event is PointerMoveEvent ) ? event.localPosition : (event.localPosition + (event as PointerPanZoomUpdateEvent ).localPan);
632
- _finalPosition = OffsetPair (local: localPosition, global: position);
660
+ _lastPosition = OffsetPair (local: localPosition, global: position);
633
661
final Offset resolvedDelta = _resolveLocalDeltaForMultitouch (event.pointer, localDelta);
634
662
switch (_state) {
635
663
case _DragState .ready || _DragState .possible:
@@ -643,7 +671,7 @@ abstract class DragGestureRecognizer extends OneSequenceGestureRecognizer {
643
671
untransformedDelta: movedLocally,
644
672
untransformedEndPosition: localPosition
645
673
).distance * (_getPrimaryValueFromOffset (movedLocally) ?? 1 ).sign;
646
- if (_hasSufficientGlobalDistanceToAccept (event.kind, gestureSettings? .touchSlop)) {
674
+ if (hasSufficientGlobalDistanceToAccept (event.kind, gestureSettings? .touchSlop)) {
647
675
_hasDragThresholdBeenMet = true ;
648
676
if (_acceptedActivePointers.contains (event.pointer)) {
649
677
_checkDrag (event.pointer);
@@ -823,15 +851,15 @@ abstract class DragGestureRecognizer extends OneSequenceGestureRecognizer {
823
851
if (estimate == null ) {
824
852
debugReport = () => 'Could not estimate velocity.' ;
825
853
} else {
826
- details = _considerFling (estimate, tracker.kind);
854
+ details = considerFling (estimate, tracker.kind);
827
855
debugReport = (details != null )
828
856
? () => '$estimate ; fling at ${details !.velocity }.'
829
857
: () => '$estimate ; judged to not be a fling.' ;
830
858
}
831
859
details ?? = DragEndDetails (
832
860
primaryVelocity: 0.0 ,
833
- globalPosition: _finalPosition .global,
834
- localPosition: _finalPosition .local,
861
+ globalPosition: _lastPosition .global,
862
+ localPosition: _lastPosition .local,
835
863
);
836
864
837
865
invokeCallback <void >('onEnd' , () => onEnd !(details! ), debugReport: debugReport);
@@ -883,7 +911,7 @@ class VerticalDragGestureRecognizer extends DragGestureRecognizer {
883
911
}
884
912
885
913
@override
886
- DragEndDetails ? _considerFling (VelocityEstimate estimate, PointerDeviceKind kind) {
914
+ DragEndDetails ? considerFling (VelocityEstimate estimate, PointerDeviceKind kind) {
887
915
if (! isFlingGesture (estimate, kind)) {
888
916
return null ;
889
917
}
@@ -892,14 +920,14 @@ class VerticalDragGestureRecognizer extends DragGestureRecognizer {
892
920
return DragEndDetails (
893
921
velocity: Velocity (pixelsPerSecond: Offset (0 , dy)),
894
922
primaryVelocity: dy,
895
- globalPosition: _finalPosition .global,
896
- localPosition: _finalPosition .local,
923
+ globalPosition: lastPosition .global,
924
+ localPosition: lastPosition .local,
897
925
);
898
926
}
899
927
900
928
@override
901
- bool _hasSufficientGlobalDistanceToAccept (PointerDeviceKind pointerDeviceKind, double ? deviceTouchSlop) {
902
- return _globalDistanceMoved .abs () > computeHitSlop (pointerDeviceKind, gestureSettings);
929
+ bool hasSufficientGlobalDistanceToAccept (PointerDeviceKind pointerDeviceKind, double ? deviceTouchSlop) {
930
+ return globalDistanceMoved .abs () > computeHitSlop (pointerDeviceKind, gestureSettings);
903
931
}
904
932
905
933
@override
@@ -943,7 +971,7 @@ class HorizontalDragGestureRecognizer extends DragGestureRecognizer {
943
971
}
944
972
945
973
@override
946
- DragEndDetails ? _considerFling (VelocityEstimate estimate, PointerDeviceKind kind) {
974
+ DragEndDetails ? considerFling (VelocityEstimate estimate, PointerDeviceKind kind) {
947
975
if (! isFlingGesture (estimate, kind)) {
948
976
return null ;
949
977
}
@@ -952,14 +980,14 @@ class HorizontalDragGestureRecognizer extends DragGestureRecognizer {
952
980
return DragEndDetails (
953
981
velocity: Velocity (pixelsPerSecond: Offset (dx, 0 )),
954
982
primaryVelocity: dx,
955
- globalPosition: _finalPosition .global,
956
- localPosition: _finalPosition .local,
983
+ globalPosition: _lastPosition .global,
984
+ localPosition: _lastPosition .local,
957
985
);
958
986
}
959
987
960
988
@override
961
- bool _hasSufficientGlobalDistanceToAccept (PointerDeviceKind pointerDeviceKind, double ? deviceTouchSlop) {
962
- return _globalDistanceMoved .abs () > computeHitSlop (pointerDeviceKind, gestureSettings);
989
+ bool hasSufficientGlobalDistanceToAccept (PointerDeviceKind pointerDeviceKind, double ? deviceTouchSlop) {
990
+ return globalDistanceMoved .abs () > computeHitSlop (pointerDeviceKind, gestureSettings);
963
991
}
964
992
965
993
@override
@@ -1001,22 +1029,22 @@ class PanGestureRecognizer extends DragGestureRecognizer {
1001
1029
}
1002
1030
1003
1031
@override
1004
- DragEndDetails ? _considerFling (VelocityEstimate estimate, PointerDeviceKind kind) {
1032
+ DragEndDetails ? considerFling (VelocityEstimate estimate, PointerDeviceKind kind) {
1005
1033
if (! isFlingGesture (estimate, kind)) {
1006
1034
return null ;
1007
1035
}
1008
1036
final Velocity velocity = Velocity (pixelsPerSecond: estimate.pixelsPerSecond)
1009
1037
.clampMagnitude (minFlingVelocity ?? kMinFlingVelocity, maxFlingVelocity ?? kMaxFlingVelocity);
1010
1038
return DragEndDetails (
1011
1039
velocity: velocity,
1012
- globalPosition: _finalPosition .global,
1013
- localPosition: _finalPosition .local,
1040
+ globalPosition: lastPosition .global,
1041
+ localPosition: lastPosition .local,
1014
1042
);
1015
1043
}
1016
1044
1017
1045
@override
1018
- bool _hasSufficientGlobalDistanceToAccept (PointerDeviceKind pointerDeviceKind, double ? deviceTouchSlop) {
1019
- return _globalDistanceMoved .abs () > computePanSlop (pointerDeviceKind, gestureSettings);
1046
+ bool hasSufficientGlobalDistanceToAccept (PointerDeviceKind pointerDeviceKind, double ? deviceTouchSlop) {
1047
+ return globalDistanceMoved .abs () > computePanSlop (pointerDeviceKind, gestureSettings);
1020
1048
}
1021
1049
1022
1050
@override
0 commit comments