MatrixGestureDetector constructor

const MatrixGestureDetector({
  1. Key? key,
  2. required MatrixGestureDetectorCallback onMatrixUpdate,
  3. required Widget child,
  4. bool shouldTranslate = true,
  5. bool shouldScale = true,
  6. bool shouldRotate = true,
  7. bool clipChild = true,
  8. Alignment? focalPointAlignment,
})

Implementation

const MatrixGestureDetector({
  Key? key,
  required this.onMatrixUpdate,
  required this.child,
  this.shouldTranslate = true,
  this.shouldScale = true,
  this.shouldRotate = true,
  this.clipChild = true,
  this.focalPointAlignment,
}) : super(key: key);