multitouchDragStrategy property
getter/setter pair
Configure the multi-finger drag strategy on multi-touch devices.
If set to MultitouchDragStrategy.latestPointer, the drag gesture recognizer will only track the latest active (accepted by this recognizer) pointer, which appears to be only one finger dragging.
If set to MultitouchDragStrategy.averageBoundaryPointers, all active pointers will be tracked, and the result is computed from the boundary pointers.
If set to MultitouchDragStrategy.sumAllPointers, all active pointers will be tracked together and the scrolling offset is the sum of the offsets of all active pointers
By default, the strategy is MultitouchDragStrategy.latestPointer.
See also:
- MultitouchDragStrategy, which defines several different drag strategies for multi-finger drag.
Implementation
MultitouchDragStrategy multitouchDragStrategy;