mobileGestureRecognizers property

Set<Factory<OneSequenceGestureRecognizer>>? mobileGestureRecognizers
final

A set of gesture recognizers.

This is used in order to allow the users to scroll in situations where it would normally not be possible.

What does that mean? Check this out(part 3):

Example usage:

mobileGestureRecognizers: Set()
..add(
  Factory<VerticalDragGestureRecognizer>(
    () => VerticalDragGestureRecognizer(),
  ),
)
..add(
  Factory<TapGestureRecognizer>(
    () => TapGestureRecognizer(),
  ),
)
..add(
  Factory<LongPressGestureRecognizer>(
    () => LongPressGestureRecognizer(),
  ),
),

Implementation

final Set<Factory<OneSequenceGestureRecognizer>>? mobileGestureRecognizers;