From 08f779a328acac28894e32f61725dcb94ca653cd Mon Sep 17 00:00:00 2001 From: creativecreatorormaybenot Date: Mon, 13 Dec 2021 17:44:07 +0000 Subject: [PATCH] Fix typo / line wrapping in `team.dart` (#94342) --- packages/flutter/lib/src/gestures/team.dart | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/packages/flutter/lib/src/gestures/team.dart b/packages/flutter/lib/src/gestures/team.dart index e2eee5573a8..ea124b016a9 100644 --- a/packages/flutter/lib/src/gestures/team.dart +++ b/packages/flutter/lib/src/gestures/team.dart @@ -114,11 +114,13 @@ class _CombiningGestureArenaMember extends GestureArenaMember { /// [AndroidView] uses a team with a captain to decide which gestures are /// forwarded to the native view. For example if we want to forward taps and /// vertical scrolls to a native Android view, [TapGestureRecognizer]s and -/// [VerticalDragGestureRecognizer] are added to a team with a captain(the captain is set to be a -/// gesture recognizer that never explicitly claims the gesture). -/// The captain allows [AndroidView] to know when any gestures in the team has been -/// recognized (or all other arena members are out), once the captain wins the -/// gesture is forwarded to the Android view. +/// [VerticalDragGestureRecognizer] are added to a team with a captain (the +/// captain is set to be a gesture recognizer that never explicitly claims the +/// gesture). +/// +/// The captain allows [AndroidView] to know when any gestures in the team has +/// been recognized (or all other arena members are out), once the captain wins +/// the gesture is forwarded to the Android view. /// /// To assign a gesture recognizer to a team, set /// [OneSequenceGestureRecognizer.team] to an instance of [GestureArenaTeam].