matrix_gesture_detector 0.2.0-nullsafety copy "matrix_gesture_detector: ^0.2.0-nullsafety" to clipboard
matrix_gesture_detector: ^0.2.0-nullsafety copied to clipboard

outdated

A gesture detector mapping translation/rotation/scale gestures to a Matrix4 object.

matrix_gesture_detector #

MatrixGestureDetector detects translation, scale and rotation gestures and combines them into Matrix4 object that can be used by Transform widget or by low level CustomPainter code. You can customize types of reported gestures by passing shouldTranslate, shouldScale and shouldRotate parameters.

Getting Started #

The usage is as follows:

  MatrixGestureDetector(
    onMatrixUpdate: (Matrix4 m, Matrix4 tm, Matrix4 sm, Matrix4 rm) {
      setState(() {
        matrix = m;
      });
    },
    child: SomeWidgetThatUsesMatrix(
      matrix: matrix,
      ...
    )
  )
copied to clipboard

here: SomeWidgetThatUsesMatrix could be a Transform widget (transform_demo.dart) or a CustomPaint widget which CustomPainter uses Matrix4 in its low level drawing code (custom_painter_demo.dart).

Examples #

bounded demo gif grid rotation demo gif blur demo gif

79
likes
0
points
867
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.19 - 2025.04.03

A gesture detector mapping translation/rotation/scale gestures to a Matrix4 object.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, vector_math

More

Packages that depend on matrix_gesture_detector