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].