Add doc links to RawGestureDetector (#81796)

This commit is contained in:
Todd Volkert 2021-05-03 17:03:44 -07:00 committed by GitHub
parent 0cc59b0285
commit cb0bda39c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -51,7 +51,8 @@ enum DragStartBehavior {
///
/// 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
/// debug issues with gesture recognizers.
abstract class GestureRecognizer extends GestureArenaMember with DiagnosticableTreeMixin {

View File

@ -201,6 +201,7 @@ class GestureRecognizerFactoryWithHandlers<T extends GestureRecognizer> extends
/// * [Listener], a widget for listening to lower-level raw pointer events.
/// * [MouseRegion], a widget that tracks the movement of mice, even when no
/// button is pressed.
/// * [RawGestureDetector], a widget that is used to detect custom gestures.
class GestureDetector extends StatelessWidget {
/// Creates a widget that detects gestures.
///