Unverified Commit cb0bda39 authored by Todd Volkert's avatar Todd Volkert Committed by GitHub

Add doc links to RawGestureDetector (#81796)

parent 0cc59b02
...@@ -51,7 +51,8 @@ enum DragStartBehavior { ...@@ -51,7 +51,8 @@ enum DragStartBehavior {
/// ///
/// See also: /// See also:
/// ///
/// * [GestureDetector], the widget that is used to detect gestures. /// * [GestureDetector], the widget that is used to detect built-in gestures.
/// * [RawGestureDetector], the widget that is used to detect custom gestures.
/// * [debugPrintRecognizerCallbacksTrace], a flag that can be set to help /// * [debugPrintRecognizerCallbacksTrace], a flag that can be set to help
/// debug issues with gesture recognizers. /// debug issues with gesture recognizers.
abstract class GestureRecognizer extends GestureArenaMember with DiagnosticableTreeMixin { abstract class GestureRecognizer extends GestureArenaMember with DiagnosticableTreeMixin {
......
...@@ -201,6 +201,7 @@ class GestureRecognizerFactoryWithHandlers<T extends GestureRecognizer> extends ...@@ -201,6 +201,7 @@ class GestureRecognizerFactoryWithHandlers<T extends GestureRecognizer> extends
/// * [Listener], a widget for listening to lower-level raw pointer events. /// * [Listener], a widget for listening to lower-level raw pointer events.
/// * [MouseRegion], a widget that tracks the movement of mice, even when no /// * [MouseRegion], a widget that tracks the movement of mice, even when no
/// button is pressed. /// button is pressed.
/// * [RawGestureDetector], a widget that is used to detect custom gestures.
class GestureDetector extends StatelessWidget { class GestureDetector extends StatelessWidget {
/// Creates a widget that detects gestures. /// Creates a widget that detects gestures.
/// ///
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment