FingersGestureDetector constructor
const
FingersGestureDetector({
- Key? key,
- required MatrixUpdateCallback onMatrixUpdate,
- required Widget child,
- bool shouldTranslate = true,
- bool shouldScale = true,
- bool shouldRotate = true,
- bool clipChild = true,
- Alignment? focalPointAlignment,
- HitTestBehavior behavior = HitTestBehavior.deferToChild,
- double minScale = 0.1,
- double maxScale = 10.0,
Implementation
const FingersGestureDetector({
Key? key,
required this.onMatrixUpdate,
required this.child,
this.shouldTranslate = true,
this.shouldScale = true,
this.shouldRotate = true,
this.clipChild = true,
this.focalPointAlignment,
this.behavior = HitTestBehavior.deferToChild,
this.minScale = 0.1,
this.maxScale = 10.0,
}) : super(key: key);