gestureRecognizers property

Set<Factory<OneSequenceGestureRecognizer>>? gestureRecognizers
final

Which gestures should be consumed by the PdfView.

It is possible for other gesture recognizers to be competing with the Pdf View on pointer events, e.g if the Pdf View is inside a ListView the ListView will want to handle vertical drags. The Pdf View will claim gestures that are recognized by any of the recognizers on this list.

When this set is empty or null, the Pdf View will only handle pointer events for gestures that were not claimed by any other gesture recognizer.

Implementation

final Set<Factory<OneSequenceGestureRecognizer>>? gestureRecognizers;