File tree Expand file tree Collapse file tree 3 files changed +13
-14
lines changed Expand file tree Collapse file tree 3 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -486,19 +486,10 @@ mixin _TapStatusTrackerMixin on OneSequenceGestureRecognizer {
486
486
Timer ? _consecutiveTapTimer;
487
487
Offset ? _lastTapOffset;
488
488
489
- /// {@template flutter.gestures.selectionrecognizers.BaseTapAndDragGestureRecognizer.onTapTrackStart}
490
- /// Callback used to indicate that a tap tracking has started upon
491
- /// a [PointerDownEvent] .
492
- /// {@endtemplate}
489
+ /// {@macro flutter.gestures.selectionrecognizers.TextSelectionGestureDetector.onTapTrackStart}
493
490
VoidCallback ? onTapTrackStart;
494
491
495
- /// {@template flutter.gestures.selectionrecognizers.BaseTapAndDragGestureRecognizer.onTapTrackReset}
496
- /// Callback used to indicate that a tap tracking has been reset which
497
- /// happens on the next [PointerDownEvent] after the timer between two taps
498
- /// elapses, the recognizer loses the arena, the gesture is cancelled or
499
- /// the recognizer is disposed of.
500
- /// {@endtemplate}
501
-
492
+ /// {@macro flutter.gestures.selectionrecognizers.TextSelectionGestureDetector.onTapTrackReset}
502
493
VoidCallback ? onTapTrackReset;
503
494
504
495
// When tracking a tap, the [consecutiveTapCount] is incremented if the given tap
Original file line number Diff line number Diff line change @@ -759,7 +759,7 @@ mixin _PlatformViewGestureMixin on RenderBox implements MouseTrackerAnnotation {
759
759
760
760
_HandlePointerEvent ? _handlePointerEvent;
761
761
762
- /// {@macro flutter.rendering.RenderAndroidView .updateGestureRecognizers}
762
+ /// {@macro flutter.rendering.PlatformViewRenderBox .updateGestureRecognizers}
763
763
///
764
764
/// Any active gesture arena the `PlatformView` participates in is rejected when the
765
765
/// set of gesture recognizers is changed.
Original file line number Diff line number Diff line change @@ -3153,10 +3153,18 @@ class TextSelectionGestureDetector extends StatefulWidget {
3153
3153
required this .child,
3154
3154
});
3155
3155
3156
- /// {@macro flutter.gestures.selectionrecognizers.BaseTapAndDragGestureRecognizer.onTapTrackStart}
3156
+ /// {@template flutter.gestures.selectionrecognizers.TextSelectionGestureDetector.onTapTrackStart}
3157
+ /// Callback used to indicate that a tap tracking has started upon
3158
+ /// a [PointerDownEvent] .
3159
+ /// {@endtemplate}
3157
3160
final VoidCallback ? onTapTrackStart;
3158
3161
3159
- /// {@macro flutter.gestures.selectionrecognizers.BaseTapAndDragGestureRecognizer.onTapTrackReset}
3162
+ /// {@template flutter.gestures.selectionrecognizers.TextSelectionGestureDetector.onTapTrackReset}
3163
+ /// Callback used to indicate that a tap tracking has been reset which
3164
+ /// happens on the next [PointerDownEvent] after the timer between two taps
3165
+ /// elapses, the recognizer loses the arena, the gesture is cancelled or
3166
+ /// the recognizer is disposed of.
3167
+ /// {@endtemplate}
3160
3168
final VoidCallback ? onTapTrackReset;
3161
3169
3162
3170
/// Called for every tap down including every tap down that's part of a
You can’t perform that action at this time.
0 commit comments